diff --git a/app/templates/admin/users.html b/app/templates/admin/users.html
index 02c92913..03a3344d 100644
--- a/app/templates/admin/users.html
+++ b/app/templates/admin/users.html
@@ -80,8 +80,8 @@
{{ 'Banned'|safe if user.banned }}
{{ 'Banned posts'|safe if user.ban_posts }}
{{ 'Banned comments'|safe if user.ban_comments }} |
- {{ arrow.get(user.last_seen).humanize(locale=locale) }} |
{{ user.reports if user.reports > 0 }} |
+ {% if user.attitude %}{{ (user.attitude * 100) | round | int }}%{% endif %} |
{% if user.reputation %}R {{ user.reputation | round | int }}{% endif %} |
{{ arrow.get(user.last_seen).humanize(locale=locale) }} |
Edit,
|