{% extends "admin/base.html" %} {% load i18n %} {% block title %}{{ title }}{% endblock %} {% block content %}

{{ title }}

{% blocktrans %} Raw passwords are not stored, so there is no way to see this user’s password, but you can change the password (of the user your are editing right now) using {% endblocktrans %} {% trans "this form" %}.

    {% for message in messages %}
  • {{message}}
  • {% endfor %}
{% if form.errors %} {% endif %}
{% csrf_token %} {% for field in form %}
{{ field.errors }} {{ field.label_tag }} {{ field }} {% if field.help_text %} {{ field.help_text|safe }} {% endif %}
{% endfor %}
{% endblock %}