rDrama/files/templates/patrons.html

23 lines
719 B
HTML
Raw Normal View History

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>
2022-02-24 12:03:28 +00:00
<th>#</th>
<th>Name</th>
<th>Tier</th>
2021-10-15 14:08:27 +00:00
</tr>
</thead>
2021-11-24 12:20:52 +00:00
{% for u in users %}
2021-10-15 14:08:27 +00:00
<tr>
2022-02-24 12:03:28 +00:00
<td>{{loop.index}}</td>
<td><a style="color:#{{u.namecolor}}" href="/@{{u.username}}"><img 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-04-03 15:47:53 +00:00
<td><img alt="2{{u.patron}}" loading="lazy" width=29.33 height=32 src="/assets/images/badges/2{{u.patron}}.webp?v=1015"></td>
2021-10-15 14:08:27 +00:00
</tr>
{% endfor %}
</table>
{% endblock %}