Fix #3857: Add searching mod actions by message.

Also allow searching user feedbacks and bulk update requests.
This commit is contained in:
evazion
2018-08-31 19:58:05 -05:00
parent 0eff095a3e
commit bc7ead5396
3 changed files with 5 additions and 0 deletions

View File

@@ -1,6 +1,8 @@
<%= simple_form_for(:search, url: bulk_update_requests_path, method: :get, defaults: { required: false }, html: { class: "inline-form" }) do |f| %>
<%= f.input :user_name, label: "Creator", input_html: { value: params[:search][:user_name] } %>
<%= f.input :approver_name, label: "Approver", input_html: { value: params[:search][:approver_name] } %>
<%= f.input :title_matches, label: "Title", input_html: { value: params[:search][:title_matches] } %>
<%= f.input :script_matches, label: "Script", input_html: { value: params[:search][:script_matches] } %>
<%= f.input :status, label: "Status", collection: %w[pending approved rejected], include_blank: true, selected: params[:search][:status] %>
<%= f.input :order, collection: [%w[Status status_desc], %w[Last\ updated updated_at_desc], %w[Newest id_desc], %w[Oldest id_asc]], include_blank: false, selected: params[:search][:order] %>
<%= f.submit "Search" %>

View File

@@ -1,5 +1,6 @@
<%= simple_form_for(:search, method: :get, url: mod_actions_path, defaults: { required: false }, html: { class: "inline-form" }) do |f| %>
<%= f.input :creator_name, label: "Creator", input_html: { value: params[:search][:creator_name] } %>
<%= f.input :description_matches, label: "Description" %>
<%= f.input :category, label: "Category", collection: ModAction.categories.map {|k,v| [k.capitalize.tr("_"," "), v]}, include_blank: true,selected: params[:search][:category] %>
<%= f.submit "Search" %>
<% end %>

View File

@@ -7,6 +7,8 @@
<%= search_field "creator_name", :label => "Creator" %>
<%= search_field "body_matches", :label => "Message" %>
<div class="input">
<label for="search_category">Category</label>
<%= select "search", "category", %w(positive negative neutral), :include_blank => true %>