{% extends "controlpanel/base.html" %} {% load ui %} {% block heading %}Add an admin to {{ club }}{% endblock heading %} {% block panel %}
A club admin can manage everything in this club. They will be required to set up two-factor authentication before they can sign in.
{% csrf_token %} {% for error in form.non_field_errors %}
{{ error }}
{% endfor %} {% for field in form %}
{{ field|daisy }} {% if field.help_text %}{{ field.help_text }}{% endif %} {% for error in field.errors %}{{ error }}{% endfor %}
{% endfor %}
Cancel
{% endblock panel %}