diff --git a/templates/mod/users.html b/templates/mod/users.html
index 761d3ddd..6ea6248f 100644
--- a/templates/mod/users.html
+++ b/templates/mod/users.html
@@ -4,7 +4,9 @@
{% trans 'Username' %} |
{% trans 'Type' %} |
{% trans 'Boards' %} |
- {% trans 'Last action' %} |
+ {% if mod|hasPermission(config.mod.modlog) %}
+ {% trans 'Last action' %} |
+ {% endif %}
… |
@@ -34,17 +36,15 @@
{{ _boards|join(', ') }}
{% endif %}
-
- {% if mod|hasPermission(config.mod.modlog) %}
+ {% if mod|hasPermission(config.mod.modlog) %}
+ |
{% if user.last %}
{{ user.last|ago }}
{% else %}
{% trans 'never' %}
{% endif %}
- {% else %}
- –
- {% endif %}
- |
+
+ {% endif %}
{% if mod|hasPermission(config.mod.promoteusers) and user.type < constant('ADMIN') %}
▲
|