Allow admins to remove comment votes by other users. This is done by clicking the comment score to get to the comment vote list, then clicking the Remove button on every vote.
13 lines
1.0 KiB
Plaintext
13 lines
1.0 KiB
Plaintext
<%= search_form_for(comment_votes_path) do |f| %>
|
|
<%= f.input :user_name, label: "Voter", input_html: { value: params[:search][:user_name], "data-autocomplete": "user" } %>
|
|
<%= f.simple_fields_for :comment do |fc| %>
|
|
<%= fc.input :creator_name, label: "Commenter", input_html: { value: params.dig(:search, :comment, :creator_name), "data-autocomplete": "user" } %>
|
|
<%= fc.input :post_tags_match, label: "Tags", input_html: { value: params.dig(:search, :comment, :post_tags_match), "data-autocomplete": "tag-query" } %>
|
|
<%= fc.input :post_id, label: "Post", input_html: { value: params.dig(:search, :comment, :post_id) } %>
|
|
<% end %>
|
|
<%= f.input :comment_id, label: "Comment", input_html: { value: params[:search][:comment_id] } %>
|
|
<%= f.input :is_deleted, label: "Deleted?", as: :select, include_blank: true, selected: params[:search][:is_deleted] %>
|
|
<%= f.input :score, collection: [["+1", "1"], ["-1", "-1"]], include_blank: true, selected: params[:search][:score] %>
|
|
<%= f.submit "Search" %>
|
|
<% end %>
|