<%= notice %>

Countries

<% @countries.each do |country| %> <% end %>
Codice Iso3 N Nazione Regione Creg Provincia
<%= country.codice %> <%= country.iso3 %> <%= country.n %> <%= country.nazione %> <%= country.regione %> <%= country.creg %> <%= country.provincia %> <%= link_to 'Show', country %> <%= link_to 'Edit', edit_country_path(country) %> <%= link_to 'Destroy', country, method: :delete, data: { confirm: 'Are you sure?' } %>

<%= link_to 'New Country', new_country_path %>