section.widget.widget-search header h5 Filtros br = search_form_for @q, url: patrimonio_busca_bens_do_lote_leilao_path, :html => {class: "form-vertical"}, builder: SimpleForm::FormBuilder do |f| fieldset .form-group .row style="margin-left: 0; margin-right: 0;" .col-sm-3.filter_column = f.input :unidade_gestora_id_eq, label: "Unidade Gestora:", as: :select, collection: @unidades_gestoras, label_method: :codigo_e_nome, include_blank: 'Selecione...', value: @q.unidade_gestora_id_eq, input_html: { class: "form-control s2" } .col-sm-3.filter_column = f.input :item_id_eq, label: "Item:", as: :select, collection: @itens, label_method: :codigo_e_descricao, include_blank: 'Selecione...', value: @q.item_id_eq, input_html: { class: "form-control s2" } .col-sm-3.filter_column = f.input :localizacao_atual_centro_de_custo_id_eq, label: 'Centro de Custos: ', as: :select, collection: @centros_de_custos, label_method: :codigo_e_descricao, include_blank: 'Selecione...', value: @q.localizacao_atual_centro_de_custo_id_eq, input_html: { class: "form-control s2" } .col-sm-3.filter_column = f.input :numero_do_tombamento_eq, label: "Número do Tombamento:", value: @q.numero_do_tombamento_eq, input_html: { class: "form-control s2" } br .row style="margin-left: 0; margin-right: 0;" .col-sm-6.filter_column label.control-label for="normal-field" Número de Tombamento (Faixa): .div = f.input :numero_do_tombamento_numeric_gteq, label: 'De: ', class: "form-control" .div = f.input :numero_do_tombamento_numeric_lteq, label: 'Até: ', class: "form-control" .form-actions.form-search-actions = f.submit "Filtrar", class: "btn btn-default btn-sm"