{% extends 'base.html' %} {% load form_tags %} {% block title %}{{ title }}{% endblock %} {% block content %}

{{ title }}

Back to Users
{% csrf_token %} {% for hidden in form.hidden_fields %} {{ hidden }} {% endfor %} {% if form.non_field_errors %}
{{ form.non_field_errors }}
{% endif %} {% if auto_username %}
Username will be generated automatically when you save this account.
{% endif %} {% for field in form.visible_fields %}
{{ field|daisyui }} {% if field.help_text %} {{ field.help_text }} {% endif %} {% for error in field.errors %} {{ error }} {% endfor %}
{% endfor %}
Cancel
{% endblock %}