rDrama/files/templates/admin/shadowbanned.html

32 lines
784 B
HTML

{% extends "settings2.html" %}
{% block pagetitle %}Shadowbanned Users{% endblock %}
{% block content %}
<div class="overflow-x-auto">
<table class="table table-striped mb-5">
<thead class="bg-primary text-white">
<tr>
<th>#</th>
<th>Name</th>
<th>Last Active</th>
<th>Truescore</th>
<th>Shadowbanned by</th>
<th>Shadowban reason</th>
</tr>
</thead>
{% for user in users %}
<tr>
<td>{{loop.index}}</td>
<td data-sort-key="{{user.username.lower() if user else ''}}">{%- include 'user_in_table.html' -%}</td>
<td {% if user.last_active %}data-time="{{user.last_active}}"{% endif %}></td>
<td>{{user.truescore}}</td>
<td>{{user.shadowbanned}}</td>
<td>{% if user.ban_reason %}{{user.ban_reason}}{% endif %}</td>
</tr>
{% endfor %}
</table>
{% endblock %}