Add search interface for mod actions
This commit is contained in:
5
app/views/mod_actions/_search.html.erb
Normal file
5
app/views/mod_actions/_search.html.erb
Normal file
@@ -0,0 +1,5 @@
|
||||
<%= 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 :category, label: "Category", collection: ModAction.categories.map {|k,v| [k.capitalize.tr("_"," "), v]}, include_blank: true,selected: params[:search][:category] %>
|
||||
<%= f.submit "Search" %>
|
||||
<% end %>
|
||||
Reference in New Issue
Block a user