+ <%= search_form_for @q, url: [:registrar, :account_activities], html: { style: 'margin-bottom: 0;' } do |f| %>
+
+
+
+ <%= f.label t(:activity_type) %>
+ <%= f.select :activity_type_in, AccountActivity.types_for_select, {}, class: 'form-control js-combobox', placeholder: t(:choose), multiple: true %>
+
+
+
+
+
+ <%= f.label t(:description) %>
+ <%= f.search_field :description_cont, class: 'form-control', placeholder: t(:description), autocomplete: 'off' %>
+
+
+
+
+
+ <%= f.label t(:receipt_date_from) %>
+ <%= f.search_field :created_at_gteq, value: params[:q][:created_at_gteq], class: 'form-control js-datepicker', placeholder: t(:receipt_date_from) %>
+
+
+
+
+
+ <%= f.label t(:receipt_date_until) %>
+ <%= f.search_field :created_at_lteq, value: params[:q][:created_at_lteq], class: 'form-control js-datepicker', placeholder: t(:receipt_date_until) %>
+
+
+
+
+
+ <%= link_to(t('.reset_btn'), registrar_account_activities_path, class: 'btn btn-default') %>
+
+