implemented moderator dashboard queue
This commit is contained in:
17
app/views/moderator/dashboards/_activity_note.html.erb
Normal file
17
app/views/moderator/dashboards/_activity_note.html.erb
Normal file
@@ -0,0 +1,17 @@
|
||||
<table>
|
||||
<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_eq => activity.user.id}) %></td>
|
||||
</tr>
|
||||
<% end %>
|
||||
</tbody>
|
||||
</table>
|
||||
Reference in New Issue
Block a user