Moderator Dashboard

<% @dashboard.upload_activity.each do |activity| %> <% end %>
Uploads
User Count
<%= admin_link_to_user(activity.user, :positive) %> <%= link_to activity.count, {:controller => "post", :action => "index", :tags => "user:#{activity.user.name}"} %>
<% @dashboard.note_activity.each do |activity| %> <% end %>
Note Updates
User Count
<%= admin_link_to_user(activity.user, :positive) %> <%= link_to activity.count, {:controller => "note", :action => "history", :user_id => activity.user.id} %>
<% @dashboard.tag_activity.each do |activity| %> <% end %>
Tag Updates
User Count
<%= admin_link_to_user(activity.user, :positive) %> <%= link_to activity.count, {:controller => "post_tag_history", :action => "index", :user_id => activity.user.id} %>
<% @dashboard.wiki_page_activity.each do |activity| %> <% end %>
Wiki Page Updates
User Count
<%= admin_link_to_user(activity.user, :positive) %> <%= link_to activity.count, {:controller => "wiki", :action => "recent_changes", :user_id => activity.user.id} %>
<% @dashboard.artist_activity.each do |activity| %> <% end %>
Artist Updates
User Count
<%= admin_link_to_user(activity.user, :positive) %> <%= link_to activity.count, {:controller => "artist", :action => "recent_changes", :user_id => activity.user.id} %>
<% @dashboard.comment_activity.each do |activity| %> <% end %>
Comment Activity (Negative)
Comment User Votes Score
<%= link_to activity.comment.body, :controller => "post", :action => "show", :id => activity.comment.post_id %> <%= admin_link_to_user(activity.comment.user, :negative) %> <%= activity.count %> <%= activity.comment.score %>
<% @dashboard.appealed_posts.each do |appeal| %> <% end %>
Appealed Posts
Post User Flags Appeals Score
<%= link_to "View all posts", :controller => "post_appeal", :action => "index" %>
<%= link_to image_tag(appeal.post.preview_url), :controller => "post", :action => "show", :id => appeal.post.id %> <%= admin_link_to_user appeal.post.user, :negative %> <%= post_flag_summary(appeal.post) %> <%= post_appeal_summary(appeal.post) %> <%= appeal.post.score %>
<% UserRecord.recent(@dashboard.min_date).all(:order => "id desc").each do |record| %> <% end %>
User Records
User Message Date
<%= link_to(record.user.name, :controller => "user", :action => "show", :id => record.user_id) %> <%= format_text(record.body) %> <%= time_ago_in_words(record.created_at) %> ago
<% ModAction.all(:order => "id desc", :limit => 10).each do |mod_action| %> <% end %>
Mod Actions
Moderator Description
<%= link_to "View all actions", :controller => "mod_action", :action => "index" %>
<%= link_to mod_action.user.name, :controller => "user", :action => "show", :id => mod_action.user_id %> <%= format_text(mod_action.description) %>