Código |
País |
Continente |
Códigos Alfa |
Eliminar |
<% @countries.each do |country| %>
<%= 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 %>
|
<% end %>