rDrama/files/templates/patrons.html

27 lines
660 B
HTML
Raw Normal View History

2022-05-04 23:09:46 +00:00
{% extends "settings2.html" %}
{% block content %}
<div class="overflow-x-auto"><table class="table table-striped mb-5">
<thead class="bg-primary text-white">
<tr>
<th>#</th>
<th>Name</th>
<th>Tier</th>
</tr>
</thead>
2022-09-05 03:01:06 +00:00
{% for user in users %}
2022-05-04 23:09:46 +00:00
<tr>
<td>{{loop.index}}</td>
2022-09-05 03:01:06 +00:00
<td>{% include "user_in_table.html" %}</td>
2022-08-25 17:50:18 +00:00
<td>
2022-09-05 03:01:06 +00:00
<img class="contain" alt="2{{user.patron}}" loading="lazy" width=29.33 height=32 src="/i/{{SITE_NAME}}/patron_badges/2{{user.patron}}.webp?v=1">
2022-10-02 19:37:07 +00:00
{% if user.patron_utc %}
2022-10-10 05:23:02 +00:00
<i class="{{benefactor_def['icon']}} {{benefactor_def['color']}} px-1"></i>
2022-10-02 19:37:07 +00:00
{% endif %}
2022-08-25 17:50:18 +00:00
</td>
2022-05-04 23:09:46 +00:00
</tr>
{% endfor %}
</table>
{% endblock %}