{% extends 'admin/auth/user/change_password.html' %} {% load i18n %} {% block content %}
{% csrf_token %}{% block form_top %}{% endblock %}
{% if is_popup %}{% endif %} {% if to_field %}{% endif %}

{% if raw %} {% blocktrans with username=obj_username %}Enter a new password hash for user {{ username }}. Switch to text password form.{% endblocktrans %} {% else %} {% blocktrans with username=obj_username %}Enter a new password for user {{ username }}, suggestion '{{ password }}'.{% endblocktrans %} {% if can_raw %}{% blocktrans %}Switch to raw password form.{% endblocktrans %}{% endif %} {% endif %}

{% if errors %}

{% if adminform.errors.items|length == 1 %}{% trans "Please correct the error below." %}{% else %}{% trans "Please correct the errors below." %}{% endif %}

{{ adminform.form.non_field_errors }} {% endif %} {% for fieldset in adminform %} {% include "admin/includes/fieldset.html" %} {% endfor %}
{% endblock %}