Sha256: 4fa380e4832da593da313907530c5c06a188912744f3d8839fc22076870556b3
Contents?: true
Size: 1.2 KB
Versions: 1
Compression:
Stored size: 1.2 KB
Contents
= form_tag 'search', method: 'GET' do %table.search_params{ align: 'center' } %tr %td{colspan: 3, style: "padding: 0px"} %h1.title = query.class.to_s.titleize %tr %td{colspan: 3} %label Query: = text_field_tag 'query', query.query, size: 60 %tr %td /%label Boost Fields: /= text_area_tag 'boost_fields', query.boost_fields, rows: 3, cols: 40 /%br %label Start Row: = text_field_tag 'start_row', query.start_row, size: 5, style: 'width: 25px' %td %label Show # Rows: = text_field_tag 'num_rows', query.num_rows, size: 5, style: 'width: 25px' %td != ' ' %tr %td{colspan: 3} != ' ' %tr %td %label{ style: 'text-align: left' } Query Fields: %br = text_area_tag 'query_fields', query.fields_to_query, rows: 12, cols: 30 %td %label{ style: 'text-align: left' } Show Fields in Result: %br = text_area_tag 'fields_to_return', query.fields_to_return.join("\n"), rows: 12, cols: 30 %td != ' ' %tr %td{colspan: 3, style: 'text-align: center'} = submit_tag 'Search'
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
searchr_rails-0.0.1 | app/views/searchr_rails/search/_parameters_form.html.haml |