{% extends "admin/base.html" %} {% block logo %}

{% if target_user.is_banned %}Unban{% else %}Ban{% endif %} User

{% endblock %} {% block main %}

{{ target_user.username }} ({{ target_user.nick }})

{% if error %}
{{ error }}
{% endif %} {% if target_user.is_banned %}

This user is currently banned. Unbanning will restore their access to the system.

Cancel
{% else %}

Banning this user will prevent them from logging in and accessing the system.

Cancel
{% endif %}
{% endblock main %}