{% extends "admin/base_site_nav.html" %} {% load i18n static admin_urls %} {% block extrahead %}{{ block.super }} {% endblock %} {% block extrastyle %}{{ block.super }}{% endblock %} {% block bodyclass %}{{ block.super }} {{ opts.app_label }}-{{ opts.model_name }} change-form{% endblock %} {% if not is_popup %} {% endif %} {% block content %}
{% csrf_token %}{% block form_top %}{% endblock %}
{% if is_popup %}{% endif %}

{% blocktrans with username=original %}Enter a new password for the user {{ username }}.{% endblocktrans %}

{% if form.password1.help_text %}

{% autoescape off %}{{ form.password1.help_text }}{% endautoescape %}

{% endif %} {% if form.password2.errors %}

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

{{ form.password2.errors }}
{% endif %}
{{ form.password1.label_tag }}
{{ form.password1 }}
{{ form.password2.label_tag }}
{{ form.password2 }}
{% endblock %}