46 lines
1.3 KiB
HTML
46 lines
1.3 KiB
HTML
{% extends "default.html" %}
|
|
{% block pagetitle %}Banned Domains{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<script>
|
|
function unbanDomain(t, domain) {
|
|
postToastSwitch(t,'/admin/unban_domain/' + domain);
|
|
t.parentElement.parentElement.remove();
|
|
}
|
|
</script>
|
|
|
|
<div class="overflow-x-auto mt-2">
|
|
<table class="table table-striped mb-5" id="domains-table">
|
|
<thead class="bg-primary text-white">
|
|
<tr>
|
|
<th>Domain</th>
|
|
<th>Ban reason</th>
|
|
<th></th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
{% for domain in banned_domains %}
|
|
<tr>
|
|
<td>{{domain.domain}}</td>
|
|
<td>{{domain.reason}}</td>
|
|
<td>
|
|
<button type="button" class="btn btn-danger" onclick="unbanDomain(this, '{{domain.domain}}')">Unban</button>
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
|
|
|
|
<form action="/admin/ban_domain" method="post">
|
|
<input type="hidden" name="formkey" value="{{v|formkey}}">
|
|
<input autocomplete="off" name="domain" placeholder="Enter domain here.." class="form-control" required>
|
|
<input autocomplete="off" name="reason" placeholder="Enter ban reason here.." oninput="document.getElementById('ban-submit').disabled=false" class="form-control mt-2">
|
|
<input autocomplete="off" id="ban-submit" type="submit" onclick="disable(this)" class="btn btn-primary mt-2" value="Ban domain" disabled>
|
|
</form>
|
|
</div>
|
|
|
|
{% endblock %}
|