Cibles

<%= link_to "Nouvelle Cible", new_target_path, class: "btn btn-primary" %>
<% if @targets.present? %> <% @targets.each do |target| %> <% sum_pct = target.allocations.sum { |a| a.percentage.to_f } %> <% badge_class = (sum_pct - 100.0).abs <= 0.01 ? "bg-success" : "bg-danger" %> <% end %> <% else %> <% end %>
Nom Répartition Date de Création
<%= link_to target.name.presence || "Cible ##{t.id}", target %> <% if target.allocations.empty? %> Aucune répartition définie <% else %>
    <% target.allocations.each do |a| %>
  • <%= a.nutrient_profile&.name || "Profil ##{a.nutrient_profile_id}" %> — <%= number_with_precision(a.percentage.to_f, precision: 2) %>%
  • <% end %>
<% end %>
<%= l(target.created_at, format: :short) %>
Aucun objectif pour le moment.  <%= link_to "Créer le premier", new_target_path %>.