{% extends "admin/base_site.html" %} {% load i18n admin_modify admin_static %}{% load url from future %} {% block extrastyle %} {% endblock %} {% block extrahead %}{{ block.super }} {% endblock %} {% block content %} {% if form.errors %}
{% blocktrans count form.errors.items|length as counter %}Please correct the error below.{% plural %}Please correct the errors below.{% endblocktrans %}
{% endif %}

{{ title }}

{% csrf_token %}{% block form_top %}{% endblock %}
{% blocktrans with original.username as username %}Enter a new password for the user {{ username }}.{% endblocktrans %}
{{ form.password1 }} {{ form.password1.errors }}
{{ form.password2 }} {{ form.password2.errors }}

{% trans 'Enter the same password as above, for verification.' %}

{% endblock %}