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">
|
2024-02-12 14:18:13 +00:00
|
|
|
<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>
|
2024-03-11 22:10:22 +00:00
|
|
|
<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 %}
|