diff --git a/bookwyrm/templates/settings/users/user_info.html b/bookwyrm/templates/settings/users/user_info.html
index 7ad57e0ef..8d332b1ae 100644
--- a/bookwyrm/templates/settings/users/user_info.html
+++ b/bookwyrm/templates/settings/users/user_info.html
@@ -48,58 +48,42 @@
{% if user.local %}
-
-
- {% trans "Email:" %}
- - {{ user.email }}
-
+ - {% trans "Email:" %}
+ - {{ user.email }}
{% endif %}
{% with report_count=user.report_set.count %}
-
+ - {% trans "Reports:" %}
+ -
+ {{ report_count|intcomma }}
+ {% if report_count > 0 %}
+
+ {% trans "(View reports)" %}
+
+ {% endif %}
+
{% endwith %}
-
-
- {% trans "Blocked by count:" %}
- - {{ user.blocked_by.count }}
-
+ - {% trans "Blocked by count:" %}
+ - {{ user.blocked_by.count }}
-
-
- {% trans "Last active date:" %}
- - {{ user.last_active_date }}
-
+ - {% trans "Last active date:" %}
+ - {{ user.last_active_date }}
-
-
- {% trans "Manually approved followers:" %}
- - {{ user.manually_approves_followers }}
-
+ - {% trans "Manually approved followers:" %}
+ - {{ user.manually_approves_followers }}
-
-
- {% trans "Discoverable:" %}
- - {{ user.discoverable }}
-
+ - {% trans "Discoverable:" %}
+ - {{ user.discoverable }}
{% if not user.is_active %}
-
-
- {% trans "Deactivation reason:" %}
- - {{ user.deactivation_reason }}
-
+ - {% trans "Deactivation reason:" %}
+ - {{ user.deactivation_reason }}
{% endif %}
{% if not user.is_active and user.deactivation_reason == "pending" %}
-
-
- {% trans "Confirmation code:" %}
- - {{ user.confirmation_code }}
-
+ - {% trans "Confirmation code:" %}
+ - {{ user.confirmation_code }}
{% endif %}
@@ -113,18 +97,14 @@
{% if server %}