<%= form_tag("/uploads/photos", method: "get", class: "pw_panel", id: "pw_search_form" ) do -%>
<%= I18n.t('from') %> <%= text_field_tag :reception_date_begin, @current_params[:reception_date_begin], maxlength: 10, size: 10, class: 'datepicker-from' -%> <%= I18n.t('to') %> <%= text_field_tag :reception_date_end, @current_params[:reception_date_end], maxlength: 10, size: 10, class: 'datepicker-to' -%>   <%= label_tag I18n.t('entries_per_page') %> <%= select_tag(:per_page, options_for_select(LIST_ROWS_PER_PAGE, @current_params[:per_page])) %>   <%= label_tag I18n.t('search_since') %> <%= select_tag(:search_since, options_for_select([ [I18n.t('10_minutes'), '10_minutes'], [I18n.t('1_hour'), '1_hour'], [I18n.t('1_day'), '1_day'], [I18n.t('1_week'), '1_week'], [I18n.t('1_month'), '1_month'], [I18n.t('3_month'), '3_month'], [I18n.t('1_year'), '1_year'], [I18n.t('all'), 'all'] ], @current_params[:search_since])) %>    <%= submit_tag 'OK', class: 'pw_big' %>
<% end -%>