Files
nairobi/app/views/users/_comments.html.erb
2017-10-18 18:54:43 +02:00

19 lines
392 B
Plaintext

<table class="margin-top">
<thead>
<th scope="col"><%= t("users.show.comments") %></th>
</thead>
<tbody>
<% @comments.each do |comment| %>
<tr id="comment_<%= comment.id %>">
<td>
<%= comment_commentable_title(comment) %>
<br>
<%= comment.body %>
</td>
</tr>
<% end %>
</tbody>
</table>
<%= paginate @comments %>