<% provide(:title, "Lista de #{t(:countries)}") %>

Lista de <%= t(:countries) %> <%= Country.all.count %>

<%= link_to new_country_path, class: 'btn btn-outline-primary btn-sm float-right' do %> Añadir País <% end %>
<% @countries.each do |country| %> <% end %>
Código País Continente Códigos Alfa Eliminar
<%= country.code %> <%= link_to country.name, edit_country_url(country), class: "btn btn-link btn-sm" %> <%= country.continent %><%= "/#{country.sub_continent.titleize}" if country.sub_continent.present? %> <%= "#{country.alpha_2}/#{country.alpha_3}".upcase %> <%= link_to country_path(country), method: :delete, class: "btn btn-outline-danger btn-sm" , data: { confirm: "¿Estás seguro de eliminar este #{t(:country)}?" } do %> Eliminar <% end %>