rDrama/files/templates/sub/mods.html

45 lines
1.4 KiB
HTML
Raw Normal View History

2022-02-10 20:35:16 +00:00
{% extends "default.html" %}
{% block content %}
<pre>
</pre>
<h5>/h/{{sub}} Mods</h5>
2022-02-10 20:35:16 +00:00
<pre></pre>
<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>Mod since</th>
<th></th>
2022-02-10 20:35:16 +00:00
</tr>
</thead>
2022-02-11 23:32:14 +00:00
{% for user, mod in users %}
2022-02-10 20:35:16 +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>
2022-07-03 07:41:25 +00:00
<td data-time="{{mod.created_utc}}"></td>
2022-02-11 23:32:14 +00:00
<td>
2022-02-12 19:33:34 +00:00
{% if v.id == user.id or v.mod_date(sub.name) and v.mod_date(sub.name) < mod.created_utc %}
<form action="/h/{{sub}}/remove_mod" method="post">
2022-03-19 16:19:02 +00:00
<input type="hidden" name="formkey" value="{{v.formkey}}">
<input type="hidden" name="uid" value="{{user.id}}">
<input autocomplete="off" class="btn btn-primary ml-auto" type="submit" onclick="disable(this)" value="{% if v.id == user.id %}Resign{% else %}Remove Mod{% endif %}">
2022-02-11 23:32:14 +00:00
</form>
{% endif %}
</td>
2022-02-10 20:35:16 +00:00
</tr>
{% endfor %}
</table>
2022-02-12 19:33:34 +00:00
{% if v.mods(sub.name) %}
<form action="/h/{{sub}}/add_mod" method="post">
2022-03-19 16:19:02 +00:00
<input type="hidden" name="formkey" value="{{v.formkey}}">
2022-03-04 18:19:43 +00:00
<input class="form-control" style="display:inline;width:250px" autocomplete="off" type="text" name="user" class="form-control" placeholder="Enter username..">
<input autocomplete="off" class="btn btn-primary ml-auto" type="submit" onclick="disable(this)" value="Add Mod">
2022-02-10 20:35:16 +00:00
</form>
{% endif %}
{% endblock %}