<%= f.input :description %>
<%= f.input :initials %>
<%= f.input :calculation_type, as: :select2, elements: CalculationTypes.to_select.to_json %>
<%= f.input :affected_score, as: :select2, elements: AffectedScoreTypes.to_select.to_json %>
<%= f.input :maximum_score %>
<%= f.input :number_of_decimal_places %>
<%= f.input :grade_ids, as: :select2, elements: grades_to_select2(grades), multiple: true,
input_html: { value: f.object.grade_ids.join(','), data: { without_json_parser: true } } %>
<%= f.input :year, as: :integer, readonly: action_name != 'new' %>