rDrama/files/templates/admins.html

31 lines
713 B
HTML
Raw Permalink Normal View History

2024-02-05 04:18:50 +00:00
{% extends "meta_navbar.html" %}
2022-05-04 23:09:46 +00:00
{% block pagetitle %}Admins{% endblock %}
{% block content %}
2023-10-29 12:51:00 +00:00
<h5 class="font-weight-bolder text-center pt-2 pb-3"><span>Admins</span></h5>
<div class="overflow-x-auto mt-1">
<table>
<thead>
2023-10-29 12:51:00 +00:00
<tr>
<th>#</th>
<th>Name</th>
<th>Admin Level</th>
<th>Truescore</th>
<th>Mod actions</th>
</tr>
</thead>
2022-05-04 23:09:46 +00:00
2023-10-29 12:51:00 +00:00
{% for user in admins %}
<tr>
<td>{{loop.index}}</td>
<td>{% include "user_in_table.html" %}</td>
<td>{{user.admin_level}}</td>
2024-03-09 11:39:13 +00:00
<td>{{user.truescore|commas}}</td>
<td><a href="/log?admin={{user.username}}">{{user.modaction_num|commas}}</a></td>
2023-10-29 12:51:00 +00:00
</tr>
{% endfor %}
</table>
</div>
2022-05-04 23:09:46 +00:00
{% endblock %}