{% extends 'admin/base_site.html' %} {% block title %}{{ title }}{% endblock %} {% block page_title %}{{ title }}{% endblock %} {% block nav_users %}active{% endblock %} {% block topbar_actions %} ← Back to Users {% endblock %} {% block content %}
{% csrf_token %}
{% for field in form %}
{{ field }} {% if field.errors %}
{% for e in field.errors %}{{ e }}{% endfor %}
{% endif %} {% if field.help_text %}

{{ field.help_text }}

{% endif %}
{% endfor %}
{% if action == 'Edit' %}
Password cannot be changed here. Ask the user to use the password change page.
{% endif %}
Cancel
{% endblock %}