rDrama/files/templates/admins.html

23 lines
1.0 KiB
HTML
Raw Normal View History

2021-10-15 14:08:27 +00:00
{% extends "settings2.html" %}
{% block pagetitle %}Admins{% endblock %}
{% block content %}
<pre class="d-none d-md-inline-block"></pre>
<h5 style="font-weight:bold;">Admins</h5>
<pre></pre>
<table class="table table-striped mb-5">
<thead class="bg-primary text-white">
<tr>
<th style="font-weight:bold;">Name</th>
2021-11-30 14:37:49 +00:00
<th style="font-weight:bold; text-align:right;">Score</th>
2021-10-15 14:08:27 +00:00
</tr>
</thead>
{% for user in admins %}
<tr>
2021-12-01 18:53:12 +00:00
<td><a style="color:#{{user.namecolor}};font-weight:bold;" href="/@{{user.username}}"><img loading="lazy" src="/uid/{{user.id}}/pic" class="pp20"><span {% if user.patron %}class="patron" style="background-color:#{{user.namecolor}};"{% endif %}>{{user.username}}</span></a>{% if user.admin_level == 1 and v and v.admin_level > 1 %}<i class="fas fa-broom align-middle ml-2 color-white" data-bs-toggle="tooltip" data-bs-placement="bottom" title="" data-bs-original-title="Meme Admin"></i>{% endif %}</td>
2021-11-30 14:37:49 +00:00
<td style="font-weight:bold; text-align:right;">{{user.truecoins}}</td>
2021-10-15 14:08:27 +00:00
</tr>
{% endfor %}
</table>
2021-07-26 20:12:30 +00:00
{% endblock %}