<% content_for :title, "Ajouter une Cible" %>

Ajouter une Cible

<%= form_with(model: @target) do |f| %>
<%= f.text_field :name, class: "form-control", placeholder: "Nom de la cible" %>
<%= f.fields_for :target_allocations do |af| %> <% np = af.object.nutrient_profile %> <% end %>
Profil Proportion
<%= af.hidden_field :nutrient_profile_id %> <%= np&.name.capitalize || "Profil ##{af.object.nutrient_profile_id}" %>
<%= af.number_field :percentage, in: 0..100, step: 0.5, class: "form-control text-end alloc-input", placeholder: "0.0", data: { action: "input->alloc#sum" } %> %
Ajustez chaque pourcentage pour totaliser 100%. Total : 0%
<% end %>