Make it so you can hover over a post's score to see the list of public upvotes. Also show the upvote count, the downvote count, and the upvote ratio.
8 lines
589 B
Plaintext
8 lines
589 B
Plaintext
<%= search_form_for(post_votes_path) do |f| %>
|
|
<%= f.input :user_name, label: "Voter", input_html: { value: params[:search][:user_name], "data-autocomplete": "user" } %>
|
|
<%= f.input :post_id, label: "Post", input_html: { value: params[:search][:post_id] } %>
|
|
<%= f.input :post_tags_match, label: "Tags", input_html: { value: params[:search][:post_tags_match], "data-autocomplete": "tag-query" } %>
|
|
<%= f.input :score, collection: [["+3", "3"], ["+1", "1"], ["-1", "-1"], ["-3", "-3"]], include_blank: true, selected: params[:search][:score] %>
|
|
<%= f.submit "Search" %>
|
|
<% end %>
|