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