| <%= student.name %> |
<%= f.hidden_field :student_id, value: student.id %>
<%= f.hidden_field :id %>
<%= f.hidden_field :discipline_id %>
<%= f.hidden_field :exempted_discipline %>
<%= f.hidden_field :_destroy %>
<%= conceptual_exam_value_student_name(f.object) %>
|
<% if old_values.present? %>
<% old_values[f.object.conceptual_exam_id].each do |step| %>
<%= step[:values]["#{f.object.discipline_id}"] || '-' %> |
<% end %>
<% end %>
<%= f.input :value, as: :select2,
elements: f.object.decorator.data_for_select2,
label_html: { class: 'hidden' },
wrapper_html: { style: 'margin-bottom: 0px;' },
readonly: (f.object.exempted_discipline.to_s == 'true') %>
|