diff --git a/app/views/maintenance/user/count_fixes/new.html.erb b/app/views/maintenance/user/count_fixes/new.html.erb index 5d318d952..2307e9e08 100644 --- a/app/views/maintenance/user/count_fixes/new.html.erb +++ b/app/views/maintenance/user/count_fixes/new.html.erb @@ -2,7 +2,7 @@

Refresh Counts

-

If you believe the upload counts on your profile are incorrect, you can request a refresh to recalculate the counts.

+

If you believe the upload or post changes statistics on your profile are incorrect, you can request a refresh to recalculate them.

<%= form_tag(maintenance_user_count_fixes_path) do %> <%= submit_tag "Continue" %> diff --git a/app/views/users/_statistics.html.erb b/app/views/users/_statistics.html.erb index 4b0b69917..2e39f5330 100644 --- a/app/views/users/_statistics.html.erb +++ b/app/views/users/_statistics.html.erb @@ -43,7 +43,7 @@ <%= presenter.upload_count(self) %> <% if presenter.has_uploads? %> - [<%= link_to "tag changes report", reports_upload_tags_path(user_id: user.id) %>] + (<%= 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") %>] @@ -82,7 +82,10 @@ <%= presenter.post_version_count(self) %> <% if CurrentUser.is_moderator? && UserRevert.can_revert?(user)%> - [<%= link_to "revert all", new_user_revert_path(user_id: user.id) %>] + (<%= link_to "revert all", new_user_revert_path(user_id: user.id) %>) + <% end %> + <% if CurrentUser.id == user.id %> + (<%= link_to "refresh", new_maintenance_user_count_fixes_path %>) <% end %>