rDrama/files/templates/patrons.html

33 lines
1.1 KiB
HTML
Raw Normal View History

2021-07-30 14:47:03 +00:00
{% 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>
2021-07-30 15:00:27 +00:00
<th style="font-weight:bold;">Tier</th>
2021-07-30 18:40:15 +00:00
<th style="font-weight:bold;">Awards</th>
2021-07-30 14:47:03 +00:00
</tr>
</thead>
{% for user in users %}
<tr>
<td style="font-weight:bold;">{{users.index(user)+1}}</td>
2021-08-02 07:00:38 +00:00
<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="/uid/{{user.id}}/pic/profile" class="profile-pic-20 mr-1">{{user.username}}</a></td>
2021-07-30 15:10:44 +00:00
2021-07-30 15:13:27 +00:00
<td><img style="width: 32px; height: 32px" src="/assets/images/badges/patron-{{user.patron}}.gif"></td>
2021-07-30 15:10:44 +00:00
2021-07-30 18:40:15 +00:00
<td style="font-weight:bold;">
{% for a in user.display_awards %}
2021-07-30 18:51:49 +00:00
<span class="d-inline-block mx-2 my-1">
2021-07-30 18:44:15 +00:00
<i class="{{ a['icon'] }} {{ a['color'] }} fa-fw" data-toggle="tooltip" data-placement="bottom" title="{{ a['title'] }} Awards owned"></i>
2021-07-30 18:40:15 +00:00
{{ a['count'] }}
</span>
{% endfor %}
</td>
2021-07-30 14:47:03 +00:00
</tr>
{% endfor %}
</table>
{% endblock %}