{% extends "admin/base_site.html" %} {% load admin_urls i18n static %} {% block extrastyle %}{{ block.super }}{% endblock %} {% if not is_popup %} {% block breadcrumbs %}
{% endblock %} {% endif %} {% block content %}
{% csrf_token %}{% block form_top %}{% endblock %}
{% if is_popup %} {% endif %} {% if form.errors %}

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

{% endif %}

{% translate 'Please enter your old password, for security’s sake, and then enter your new password twice so we can verify you typed it in correctly.' %}

{{ form.old_password }} {% include "unfold/helpers/form_errors.html" with errors=form.old_password.errors %} {% if form.old_password.help_text %}
{{ form.old_password.help_text|safe }}
{% endif %}
{{ form.new_password1 }} {% include "unfold/helpers/form_errors.html" with errors=form.new_password1.errors %} {% if form.new_password1.help_text %}
{{ form.new_password1.help_text|safe }}
{% endif %}
{{ form.new_password2 }} {% include "unfold/helpers/form_errors.html" with errors=form.new_password2.errors %} {% if form.new_password2.help_text %}
{{ form.new_password2.help_text|safe }}
{% endif %}
{% endblock %}