Merge pull request #3496 from BrokenEagle/feat-mod-action-event-ids

Add categories to mod actions
This commit is contained in:
Albert Yi
2018-01-15 11:09:38 -08:00
committed by GitHub
25 changed files with 132 additions and 37 deletions

View 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 %>

View File

@@ -1,6 +1,9 @@
<div id="c-mod-actions">
<div id="a-index">
<h1>Mod Actions</h1>
<%= render "search" %>
<table class="striped" width="100%">
<thead>
<tr>