{% extends "admin/base_site.html" %} {% load i18n djadmin %} {% block title %}{% if form.errors %}{% translate "Error:" %} {% endif %}{{ block.super }}{% endblock %} {% block breadcrumbs %} {% endblock %} {% block content_subtitle %}

{% translate 'Confirm your current password, then choose a new one.' %}

{% endblock %} {% block content %}
{% if form.errors %}
{% dj_icon "alert" "dj-icon dj-icon--sm" %} {% blocktranslate count counter=form.errors.items|length %}Please correct the error below.{% plural %}Please correct the errors below.{% endblocktranslate %}
{% endif %}
{% csrf_token %}
{% for field in form %}
{{ field.label_tag }}
{{ field }}
{% if field.help_text %}
{{ field.help_text|safe }}
{% endif %} {{ field.errors }}
{% endfor %}
{% endblock %}