<%= link_to "Nuevo Alimento", new_portion_path, class: "change-page btn btn-sm btn-primary" %>
C/U |
Alimento |
Cat |
Prot |
Carbs |
Fibra |
Grasas |
Cals |
Grasas Saturadas |
Grasas Trans |
Sodio |
Eliminar |
<% @portions.each do |portion| %>
<%= portion.quantity %> <%= portion.unidad %> |
<%= link_to portion.name, edit_portion_path(portion) %> |
<%= portion.category %> |
<%= portion.proteins %> |
<%= portion.carbs %> |
<%= portion.fiber %> |
<%= portion.fats %> |
<%= portion.calories %> |
<%= portion.saturated %> |
<%= portion.trans %> |
<%= portion.sodium %> |
<%= link_to 'Eliminar', portion, method: :delete, data: { confirm: "¿Estás seguro de eliminar a #{portion.name}?" }, class: "btn btn-danger btn-sm" %> |
<% end %>