18 lines
432 B
Plaintext
18 lines
432 B
Plaintext
<table class="striped">
|
|
<caption>Note Updates</caption>
|
|
<thead>
|
|
<tr>
|
|
<th>User</th>
|
|
<th>Count</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<% @dashboard.notes.each do |activity| %>
|
|
<tr>
|
|
<td><%= mod_link_to_user(activity.user, :positive) %></td>
|
|
<td><%= link_to activity.count, note_versions_path(:search => {:updater_id => activity.user.id}) %></td>
|
|
</tr>
|
|
<% end %>
|
|
</tbody>
|
|
</table>
|