<%= t("comments.comment.votes", count: comment.total_votes) %>
|
<%= button_to vote_comment_path(comment, value: "yes"),
method: "post",
remote: can?(:vote, comment),
title: t("votes.agree") do %>
<%= t("votes.agree") %>
<% end %>
<%= comment.total_likes %>
<%= button_to vote_comment_path(comment, value: "no"),
method: "post",
remote: can?(:vote, comment),
title: t("votes.disagree") do %>
<%= t("votes.disagree") %>
<% end %>
<%= comment.total_dislikes %>