mod actions: update /mod_actions index.

* Add newest and oldest order options.
* Rearrange columns to match /user_actions page.
This commit is contained in:
evazion
2022-09-19 05:08:04 -05:00
parent f55aa85c68
commit 23f9a1af7e
4 changed files with 18 additions and 8 deletions

View File

@@ -1,6 +1,7 @@
<%= search_form_for(mod_actions_path) do |f| %>
<%= f.input :creator_name, label: "Creator", input_html: { value: params[:search][:creator_name], data: { autocomplete: "user" } } %>
<%= f.input :description_matches, label: "Description" %>
<%= f.input :description_matches, label: "Description", input_html: { value: params[:search][:description_matches] } %>
<%= f.input :category, label: "Category", collection: ModAction.categories.map {|k,v| [k.capitalize.tr("_"," "), v]}, include_blank: true,selected: params[:search][:category] %>
<%= f.input :order, collection: [%w[Newest created_at], %w[Oldest created_at_asc]], include_blank: true, selected: params[:search][:order] %>
<%= f.submit "Search" %>
<% end %>