{% extends "base.html" %} {% block title %}Edit admin{% endblock %} {% block content %}

Edit admin

Update name or contact email. Username is the login and cannot be changed.

Username (login): {{ admin_user.username }}
Account: {% if admin_user.is_active %} Active {% else %} Inactive — cannot sign in {% endif %}

Back to admins

Account access

{% if admin_user.is_active %}

Deactivate this admin to block sign-in. Programme data is unchanged.

{% else %}

This admin cannot sign in. Reactivate to restore access.

{% endif %}
{% endblock %}