19 lines
632 B
Plaintext
19 lines
632 B
Plaintext
<div class="votes">
|
|
<%= t("comments.comment.votes", count: comment.total_votes) %>
|
|
|
|
|
|
|
<span class="in-favor">
|
|
<%= render Shared::VoteButtonComponent.new(comment,
|
|
value: "yes",
|
|
title: t("votes.agree")) %>
|
|
<%= comment.total_likes %>
|
|
</span>
|
|
|
|
<span class="against">
|
|
<%= render Shared::VoteButtonComponent.new(comment,
|
|
value: "no",
|
|
title: t("votes.disagree")) %>
|
|
<%= comment.total_dislikes %>
|
|
</span>
|
|
</div>
|