2024-02-05 04:17:39 +00:00
|
|
|
{% extends "default.html" %}
|
2022-11-21 08:52:22 +00:00
|
|
|
{% block pagetitle %}Chuds{% endblock %}
|
2021-11-23 00:25:47 +00:00
|
|
|
{% block content %}
|
2023-10-29 12:51:00 +00:00
|
|
|
<h5 class="my-4">Chudded Users</h5>
|
|
|
|
<div class="overflow-x-auto">
|
2024-02-12 14:18:13 +00:00
|
|
|
<table>
|
|
|
|
<thead>
|
2023-10-29 12:51:00 +00:00
|
|
|
<tr>
|
|
|
|
<th>#</th>
|
|
|
|
<th>Name</th>
|
|
|
|
{% if v and v.admin_level >= PERMS['VIEW_LAST_ACTIVE'] -%}
|
|
|
|
<th>Last Active</th>
|
|
|
|
{%- endif %}
|
|
|
|
<th>Truescore</th>
|
|
|
|
<th>Chudded by</th>
|
|
|
|
<th>Unchud in</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
{% for user in users %}
|
|
|
|
<tr>
|
|
|
|
<td>{{loop.index}}</td>
|
|
|
|
<td>{% include "user_in_table.html" %}</td>
|
|
|
|
{% if v and v.admin_level >= PERMS['VIEW_LAST_ACTIVE'] -%}
|
|
|
|
<td {% if user.last_active %}data-time="{{user.last_active}}"{% endif %}></td>
|
|
|
|
{%- endif %}
|
|
|
|
<td>{{user.truescore}}</td>
|
|
|
|
<td>{{user.chudder | safe}}</td>
|
|
|
|
<td {% if user.chud != 1 %}data-time="{{user.chud}}"{% endif %}></td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</table>
|
|
|
|
</div>
|
2021-11-23 00:25:47 +00:00
|
|
|
{% endblock %}
|