2021-10-15 14:08:27 +00:00
|
|
|
{% extends "settings2.html" %}
|
|
|
|
|
|
|
|
{% block content %}
|
2022-01-03 10:59:29 +00:00
|
|
|
<div class="overflow-x-auto"><table class="table table-striped mb-5">
|
2021-10-15 14:08:27 +00:00
|
|
|
<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;">Tier</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
2021-11-24 12:20:52 +00:00
|
|
|
{% for u in users %}
|
2021-10-15 14:08:27 +00:00
|
|
|
<tr>
|
|
|
|
<td style="font-weight:bold;">{{loop.index}}</td>
|
2022-01-03 10:32:31 +00:00
|
|
|
<td><a style="color:#{{u.namecolor}}; font-weight:bold;" href="/@{{u.username}}"><img alt="@{{u.username}}'s profile picture" loading="lazy" src="{{u.profile_url}}" class="pp20"><span {% if u.patron %}class="patron" style="background-color:#{{u.namecolor}}"{% endif %}>{{u.username}}</span></a></td>
|
2021-10-15 14:08:27 +00:00
|
|
|
|
2022-02-04 10:19:49 +00:00
|
|
|
<td><img alt="2{{u.patron}}" loading="lazy" width=29.33 height=32 src="/static/assets/images/badges/2{{u.patron}}.webp?a=1010"></td>
|
2021-10-15 14:08:27 +00:00
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</table>
|
|
|
|
|
|
|
|
{% endblock %}
|