<%= simple_form_for :filter, { url: conceptual_exams_path, method: :get, html: { class: 'filterable_search_form' } } do |f| %>
<%= render 'resources' %>
<%= f.input :by_student_name, label: false, placeholder: t('.by_student_name') %> <%= f.input :by_step, as: :select2_step, classroom: current_user_classroom, label: false, placeholder: t('.by_step') %> <%= f.input :by_status, as: :select2, elements: ConceptualExamStatus.to_select.to_json, label: false, placeholder: t('.by_status') %> <%= link_to t('.new_html'), new_conceptual_exam_path, class: 'btn btn-primary pull-right' %>
<%= ConceptualExam.human_attribute_name :unity_id %> <%= ConceptualExam.human_attribute_name :classroom %> <%= ConceptualExam.human_attribute_name :student %> <%= ConceptualExam.human_attribute_name :step %> <%= ConceptualExam.human_attribute_name :status %>
<%= paginate @conceptual_exams %>
<% end %>