2022-02-21 06:45:01 +00:00
|
|
|
{% extends "default.html" %}
|
|
|
|
{% block content %}
|
2022-10-29 00:38:39 +00:00
|
|
|
<h5 class="mt-3 mb-1">Users exiled from /h/{{sub}}</h5>
|
2022-02-21 06:45:01 +00:00
|
|
|
<div class="overflow-x-auto"><table class="table table-striped mb-5">
|
|
|
|
<thead class="bg-primary text-white">
|
|
|
|
<tr>
|
2022-02-24 12:03:28 +00:00
|
|
|
<th>#</th>
|
|
|
|
<th>Name</th>
|
|
|
|
<th>Exiled by</th>
|
2022-10-27 15:37:40 +00:00
|
|
|
<th>Exiled since</th>
|
2022-03-09 01:44:53 +00:00
|
|
|
<th></th>
|
2022-02-21 06:45:01 +00:00
|
|
|
</tr>
|
|
|
|
</thead>
|
2022-02-22 13:43:17 +00:00
|
|
|
{% for user, exile in users %}
|
2022-02-21 06:45:01 +00:00
|
|
|
<tr>
|
2022-02-24 12:03:28 +00:00
|
|
|
<td>{{loop.index}}</td>
|
2022-09-05 03:01:06 +00:00
|
|
|
<td>{% include "user_in_table.html" %}</td>
|
|
|
|
<td>
|
|
|
|
{% with user=exile.exiler %}
|
|
|
|
{% include "user_in_table.html" %}
|
|
|
|
{% endwith %}
|
|
|
|
</td>
|
2022-09-24 18:18:00 +00:00
|
|
|
<td {% if exile.created_utc %}data-time="{{exile.created_utc}}"{% endif %}></td>
|
2022-03-09 01:44:53 +00:00
|
|
|
<td>
|
|
|
|
{% if v.mods(sub.name) %}
|
2022-09-12 05:25:04 +00:00
|
|
|
<form action="/h/{{sub}}/unexile/{{user.id}}" method="post">
|
2022-03-19 16:19:02 +00:00
|
|
|
<input type="hidden" name="formkey" value="{{v.formkey}}">
|
2022-09-22 21:40:32 +00:00
|
|
|
<input autocomplete="off" class="btn btn-primary ml-auto" type="submit" onclick="disable(this)" value="Unexile">
|
2022-03-09 01:44:53 +00:00
|
|
|
</form>
|
|
|
|
{% endif %}
|
|
|
|
</td>
|
2022-02-21 06:45:01 +00:00
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</table>
|
|
|
|
|
2022-10-27 15:37:40 +00:00
|
|
|
{% endblock %}
|