views: factor out search_form_for helper.
Refactor search forms to use `search_form_for` so that we can set common options on all search forms, such as autocomplete="off" (#4162).
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
<%= simple_form_for(:search, url: moderator_dashboard_path, method: :get) do |f| %>
|
||||
<%= search_form_for(moderator_dashboard_path) do |f| %>
|
||||
<%= f.input :min_date, as: :date, html5: true, input_html: { value: @dashboard.min_date } %>
|
||||
<%= f.input :max_level, collection: User.level_hash.to_a, include_blank: true, selected: @dashboard.max_level %>
|
||||
<%= f.submit "Search" %>
|
||||
|
||||
Reference in New Issue
Block a user