Files
danbooru/app/views/moderator/dashboards/_search_activity.html.erb
evazion 576b4feb3b views: convert mod dashboard + admin user edit page to simple form.
Fixes bug with the user level select dropdown on the mod dashboard page
missing the builder level.
2019-08-18 11:24:42 -05:00

6 lines
331 B
Plaintext

<%= simple_form_for(:search, url: moderator_dashboard_path, method: :get) 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" %>
<% end %>