2021-11-23 00:04:13 +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 %}
|
2022-01-03 10:32:31 +00:00
|
|
|
|
2022-12-14 13:12:02 +00:00
|
|
|
<h5 class="my-4">Shadowbanned Users (>= 10 Truscore)</h5>
|
2022-01-03 10:39:41 +00:00
|
|
|
<div class="overflow-x-auto">
|
2022-01-03 10:59:29 +00:00
|
|
|
<table class="table table-striped mb-5">
|
2021-11-23 00:04:13 +00:00
|
|
|
<thead class="bg-primary text-white">
|
|
|
|
<tr>
|
2022-12-10 10:40:34 +00:00
|
|
|
<th>#</th>
|
|
|
|
<th>Name</th>
|
|
|
|
<th>Last Active</th>
|
|
|
|
<th>Truescore</th>
|
|
|
|
<th>Shadowbanned by</th>
|
|
|
|
<th>Shadowban reason</th>
|
2021-11-23 00:04:13 +00:00
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
{% for user in users %}
|
|
|
|
<tr>
|
2022-02-24 12:03:28 +00:00
|
|
|
<td>{{loop.index}}</td>
|
2022-12-10 08:54:56 +00:00
|
|
|
<td data-sort-key="{{user.username.lower() if user else ''}}">{%- include 'user_in_table.html' -%}</td>
|
2022-12-10 10:40:34 +00:00
|
|
|
<td {% if user.last_active %}data-time="{{user.last_active}}"{% endif %}></td>
|
2022-12-10 08:54:56 +00:00
|
|
|
<td>{{user.truescore}}</td>
|
2022-12-13 18:50:38 +00:00
|
|
|
<td><a href="/@{{user.shadowbanner}}">{{user.shadowbanner}}</a></td>
|
2022-12-10 10:40:34 +00:00
|
|
|
<td>{% if user.ban_reason %}{{user.ban_reason}}{% endif %}</td>
|
2021-11-23 00:04:13 +00:00
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</table>
|
|
|
|
|
2022-12-10 10:40:34 +00:00
|
|
|
|
2022-12-10 08:54:56 +00:00
|
|
|
|
2021-11-23 00:04:13 +00:00
|
|
|
{% endblock %}
|