{% extends "base.html" %} {% load i18n static %} {% load admin_urls %} {% block content %}
{% csrf_token %} {% if form.errors %}

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

{% endif %}

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

{{ form.old_password }} {% if form.old_password.errors %}

{{ form.old_password.errors.as_text }}

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

{{ form.new_password1.errors.as_text }}

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

{{ form.new_password2.errors.as_text }}

{% endif %}
{% endblock %}