<%= link_to "Favorites", favorites_path(:user_id => user.id) %>
- <% if CurrentUser.is_admin? %>
- (<%= link_to "random", posts_path(:tags => "fav:#{user.name} order:random limit:100") %>)
- <% end %>
<% presenter.favorites.each do |post| %>
diff --git a/app/views/users/_statistics.html.erb b/app/views/users/_statistics.html.erb
index aeb726f0c..b2de534f2 100644
--- a/app/views/users/_statistics.html.erb
+++ b/app/views/users/_statistics.html.erb
@@ -41,17 +41,31 @@
<% if presenter.has_uploads? %>
(<%= link_to "tag changes report", reports_upload_tags_path(user_id: user.id) %>)
<% end %>
+ <% if CurrentUser.is_moderator? %>
+ (<%= link_to "sample", posts_path(:tags => "user:#{user.name} order:random limit:300") %>)
+ <% end %>
| Deleted Uploads |
- <%= presenter.deleted_upload_count(self) %> |
+
+ <%= presenter.deleted_upload_count(self) %>
+ <% if CurrentUser.is_moderator? %>
+ (<%= link_to "sample", posts_path(:tags => "user:#{user.name} order:random limit:300 status:deleted") %>)
+ <% end %>
+
+ |
| Favorites |
- <%= presenter.favorite_count(self) %> |
+
+ <%= presenter.favorite_count(self) %>
+ <% if CurrentUser.is_moderator? %>
+ (<%= link_to "sample", posts_path(:tags => "fav:#{user.name} order:random limit:300") %>)
+ <% end %>
+ |