%= error_messages_for *@targets %>
<%= render partial: 'goals/show_form', locals: {goal: current_goal} %>
<%= f.date_field :effective_from, disabled: !current_goal.is_binding? %>
<% else %> <%= render partial: 'goals/form', locals: {goal: current_goal} %> <% end %><%= f.fields_for 'targets', target, index: '' do |target_f| %> <%= target_f.hidden_field :id %> <%= target_f.hidden_field :_destroy %> <%= t ".choose_quantity" %> <% target.thresholds.each_with_index do |thr, index| %> <%= target_f.fields_for 'thresholds_attributes', thr, index: '' do |threshold_f| %> <%= threshold_f.hidden_field :id %> <% if index == 0 %> <%= threshold_f.select :quantity_id, quantity_options, {include_blank: true, required: true, label: :field_target}, onchange: "showQuantityPath(event);" %> <%= target_f.select :condition, condition_options, required: true, label: '' %> <% end %> <%= threshold_f.number_field :value, {size: 8, step: :any, label: ''} %> <% if index == 0 %> <%= threshold_f.select :unit_id, unit_options, {label: ''} %> <% end %> <% end %> <% end %> <%= link_to t(".button_delete_target"), '#', class: 'icon icon-del', onclick: "deleteTarget(); return false;" %> <% end %>
<% end %><%= link_to t(".button_new_target"), '#', class: 'icon icon-add', onclick: 'newTarget(); return false;' %>