2023-09-08 17:07:38 +00:00
|
|
|
{% extends "settings2.html" %}
|
2022-11-21 08:52:22 +00:00
|
|
|
{% block pagetitle %}Shadowbanned Users{% endblock %}
|
2021-11-23 00:04:13 +00:00
|
|
|
{% block content %}
|
2023-10-29 12:51:00 +00:00
|
|
|
<h5 class="my-4">Shadowbanned 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>
|
|
|
|
<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><a href="/@{{user.shadowbanner}}">{{user.shadowbanner}}</a></td>
|
|
|
|
<td>{{user.ban_reason | safe}}</td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</table>
|
|
|
|
</div>
|
2021-11-23 00:04:13 +00:00
|
|
|
{% endblock %}
|