22 lines
558 B
Plaintext
22 lines
558 B
Plaintext
<table class="striped">
|
|
<caption>Comment Activity</caption>
|
|
<thead>
|
|
<tr>
|
|
<th>Comment</th>
|
|
<th>User</th>
|
|
<th>Votes</th>
|
|
<th>Score</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<% @dashboard.comments.each do |activity| %>
|
|
<tr>
|
|
<td><%= link_to activity.comment.body, post_path(activity.comment.post_id) %></td>
|
|
<td><%= mod_link_to_user(activity.comment.creator, :negative) %></td>
|
|
<td><%= activity.count %></td>
|
|
<td><%= activity.comment.score %></td>
|
|
</tr>
|
|
<% end %>
|
|
</tbody>
|
|
</table>
|