{% extends "admin/base_site.html" %} {% block extrahead %}{{ super() }} {% set jsi18nurl=url('admin:jsi18n') %} {% endblock %} {% block extrastyle %}{{ super() }}{% endblock %} {% block bodyclass %}{{ opts.app_label }}-{{ opts.object_name.lower }} change-form{% endblock %} {% block breadcrumbs %}{% if not is_popup %} {% endif %}{% endblock %} {% block content %}
{% csrf_token %}{% block form_top %}{% endblock %}
{% if is_popup %}{% endif %} {% if form.errors %}

{% trans count=form.errors.items|length %}Please correct the error below.{% pluralize %}Please correct the errors below.{% endtrans %}

{% endif %}

{% trans username=original.username %}Enter a new password for the user {{ username }}.{% endtrans %}

{{ form.password1.errors }} {# TODO: get required class on label_tag #} {{ form.password1 }}
{{ form.password2.errors }} {# TODO: get required class on label_tag #} {{ form.password2 }}

{{ _('Enter the same password as above, for verification.') }}

{% endblock %}