<%= simple_form_for :filter, { url: observation_diary_records_path, method: :get, html: { class: 'filterable_search_form' } } do |f| %>
<%= render 'resources' %>
<%= f.input :by_classroom, as: :select2, elements: classrooms, label: false, placeholder: t('.by_classroom') %> <%= f.input :by_student_id, as: :select2, elements: @students, label: false, placeholder: t('.by_student') %> <%= f.input :by_discipline, as: :select2, elements: disciplines, label: false, placeholder: t('.by_discipline') %> <%= f.input :by_date, as: :date, label: false, placeholder: t('.by_date') %> <%= link_to t('.new_html'), new_observation_diary_record_path, class: 'btn btn-primary pull-right' %>
<%= ObservationDiaryRecord.human_attribute_name :unity %> <%= ObservationDiaryRecord.human_attribute_name :classroom %> <%= t('.student') %> <%= ObservationDiaryRecord.human_attribute_name :discipline %> <%= ObservationDiaryRecord.human_attribute_name :date %>
<%= paginate @observation_diary_records %>
<% end %>