Files
nairobi/app/views/users/_comments.html.erb
2016-03-14 13:17:46 +01:00

14 lines
288 B
Plaintext

<table class="clear activity-comments">
<% @comments.each do |comment| %>
<tr id="comment_<%= comment.id %>">
<td>
<%= comment_commentable_title(comment) %>
<br>
<%= comment.body %>
</td>
</tr>
<% end %>
</table>
<%= paginate @comments %>