19 lines
471 B
Plaintext
19 lines
471 B
Plaintext
<span>
|
|
númerototal votos
|
|
</span>
|
|
|
|
|
<span class="in_favor">
|
|
<%= link_to vote_comment_path(comment, value: 'yes'),
|
|
method: "post", remote: true do %>
|
|
<i class="icon-angle-up"></i>
|
|
<% end %>
|
|
<%= comment.get_likes.size %>
|
|
</span>
|
|
|
|
<span class="against">
|
|
<%= link_to vote_comment_path(comment, value: 'no'),
|
|
method: "post", remote: true do %>
|
|
<i class="icon-angle-down"></i>
|
|
<% end %>
|
|
<%= comment.get_dislikes.size %>
|
|
</span> |