{% 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 %} {% include "unfold/helpers/messages/errornote.html" with errors=form.errors %} {% 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." as message %} {% include "unfold/helpers/messages/info.html" with message=message %} {% include "unfold/helpers/field.html" with field=form.old_password %} {% include "unfold/helpers/field.html" with field=form.new_password1 %} {% include "unfold/helpers/field.html" with field=form.new_password2 %}
{% endblock %}