<%= simple_form_for :filter, { url: transfer_notes_path, method: :get, html: { class: 'filterable_search_form' } } do |f| %>
<%= render 'resources' %>
<%= f.input :by_classroom_description, label: false, placeholder: t('.by_classroom_description') %> <%= f.input :by_discipline_description, label: false, placeholder: t('.by_discipline_description') %> <%= 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_transfer_date, as: :date, label: false, placeholder: t('.by_transfer_date') %> <%= link_to t('.new_html'), new_transfer_note_path, class: 'btn btn-primary pull-right' %>
<%= TransferNote.human_attribute_name :classroom %> <%= TransferNote.human_attribute_name :discipline %> <%= TransferNote.human_attribute_name :student %> <%= TransferNote.human_attribute_name :step %> <%= TransferNote.human_attribute_name :transfer_date %>
<%= paginate @transfer_notes %>
<% end %>