diff --git a/files/templates/admin/shadowbanned.html b/files/templates/admin/shadowbanned.html index 8e6d8ae64d..a29cdf73fa 100644 --- a/files/templates/admin/shadowbanned.html +++ b/files/templates/admin/shadowbanned.html @@ -6,22 +6,26 @@ - - - - - + + + + + + {% for user in users %} - + + {% endfor %}
#NameLast ActiveShadowbanned byShadowban reason#NameLast ActiveTruescoreShadowbanned byShadowban reason
{{loop.index}}{% include "user_in_table.html" %}{%- include 'user_in_table.html' -%} {{user.truescore}} {{user.shadowbanned}} {{user.ban_reason}}
+ + {% endblock %} diff --git a/files/templates/banned.html b/files/templates/banned.html index be1a9d6149..fa90b080e4 100644 --- a/files/templates/banned.html +++ b/files/templates/banned.html @@ -6,29 +6,31 @@
- - + + {% if v and v.admin_level >= PERMS['VIEW_LAST_ACTIVE'] -%} - + {%- endif %} - - + + + {% for user in users %} - + {% if v and v.admin_level >= PERMS['VIEW_LAST_ACTIVE'] -%} {%- endif %} + - + {% endwith %} @@ -36,4 +38,6 @@ {% endfor %}
#Name#NameLast ActiveLast ActiveBan reasonBanned byTruescoreBan reasonBanned by Unban in
{{loop.index}}{% include "user_in_table.html" %}{% include "user_in_table.html" %}{{user.truescore}} {% if user.ban_reason %}{{user.ban_reason}}{% endif %} - {% with user=user.banned_by %} - {% include "user_in_table.html" %} - {% endwith %} + {% with user=user.banned_by %} + + {% include "user_in_table.html" %} {{user.unban_in}}
+ + {% endblock %} diff --git a/files/templates/chuds.html b/files/templates/chuds.html index 2522b7abb6..eddd804809 100644 --- a/files/templates/chuds.html +++ b/files/templates/chuds.html @@ -6,23 +6,28 @@
- - + + {% if v and v.admin_level >= PERMS['VIEW_LAST_ACTIVE'] -%} - + {%- endif %} + {% for user in users %} - + {% if v and v.admin_level >= PERMS['VIEW_LAST_ACTIVE'] -%} {%- endif %} + {% endfor %}
#Name#NameLast ActiveLast ActiveTruescore Unchud in
{{loop.index}}{% include "user_in_table.html" %}{% include "user_in_table.html" %}{{user.truescore}} {{user.unchud_in}}
+ + + {% endblock %}