34 lines
854 B
HTML
34 lines
854 B
HTML
{% extends "settings2.html" %}
|
|
{% block pagetitle %}Chuds{% endblock %}
|
|
{% block content %}
|
|
|
|
<h5 class="my-4">Chudded Users</h5>
|
|
<div class="overflow-x-auto"><table class="table table-striped mb-5">
|
|
<thead class="bg-primary text-white">
|
|
<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>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 {% if user.agendaposter != 1 %}data-time="{{user.agendaposter}}"{% endif %}></td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
|
|
|
|
|
|
{% endblock %}
|