remotes/1693045480750635534/spooky-22
Aevann1 2021-07-30 16:47:03 +02:00
parent 01a613840e
commit cdc6d5f0d9
1 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,21 @@
{% extends "settings2.html" %}
{% block content %}
<table class="table table-striped mb-5">
<thead class="bg-primary text-white">
<tr>
<th style="font-weight:bold;">#</th>
<th style="font-weight:bold;">Name</th>
<th style="font-weight:bold;">Ban awards</th>
</tr>
</thead>
{% for user in users %}
<tr>
<td style="font-weight:bold;">{{users.index(user)+1}}</td>
<td><a {% if user.animatedname %}class="{% if user.patron %}patron{% else %}leaderboard{% endif %}"{% endif %} style="color:#{{user.namecolor}}; font-weight:bold;" href="/@{{user.username}}"><img src="/@{{user.username}}/pic/profile" class="profile-pic-20 mr-1">{{user.username}}</a></td>
<td style="font-weight:bold;">{% if user.banawards %}{{user.banawards}}{% endif %}</td>
</tr>
{% endfor %}
</table>
{% endblock %}