mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-13 22:32:15 +00:00
23 lines
574 B
HTML
23 lines
574 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Blacklist User{% endblock %}
|
|
|
|
{% block content %}
|
|
<p>This form will blacklist the listed user below. It'll process all entries for the user and blacklist the following:</p>
|
|
<ul>
|
|
<li>EVE API Keys</li>
|
|
<li>Characters</li>
|
|
<li>Email Addresses</li>
|
|
<li>Reddit Accounts</li>
|
|
</ul>
|
|
|
|
<form action="{% url hr.views.blacklist_user u.id %}" method="post">
|
|
<table>
|
|
<tr><th><label>User:</label></th><td>{{ u.username }}</td></tr>
|
|
{{ form.as_table }}
|
|
</table>
|
|
{% csrf_token %}
|
|
<input type="submit" value="Blacklist" />
|
|
</form>
|
|
{% endblock %}
|