diff --git a/templates/mod/users.html b/templates/mod/users.html
index 6f42ce2a..bed3863f 100644
--- a/templates/mod/users.html
+++ b/templates/mod/users.html
@@ -13,7 +13,13 @@
{% for user in users %}
{{ user.id }} |
- {{ user.username|e }} |
+
+ {% if user.username == mod.username %}
+ {{ user.username|e }}
+ {% else %}
+ {{ user.username|e }}
+ {% endif %}
+ |
{% if config.mod.groups[user.type] %}
{{ config.mod.groups[user.type] }}
|