Files
grecia/app/views/users/_comments.html.erb
2015-11-03 19:54:57 +01:00

17 lines
419 B
Plaintext

<table class="clear">
<% @comments.each do |comment| %>
<tr id="debate_<%= comment.id %>">
<td>
<i>
<%= t("users.show.comment_to") %>
<%= comment.commentable.hidden? ? comment.commentable.title : link_to(comment.commentable.title, comment.commentable) %>
</i>
<br>
<%= comment.body %>
</td>
</tr>
<% end %>
</table>
<%= paginate @comments %>