12 lines
909 B
Plaintext
12 lines
909 B
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 :score, collection: [["+1", "1"], ["-1", "-1"]], include_blank: true, selected: params[:search][:score] %>
|
|
<%= f.submit "Search" %>
|
|
<% end %>
|