{% extends "admin/base_site.html" %} {% load i18n static %} {% block title %}{% if form.errors %}{% translate "Error:" %} {% endif %}{% translate "Password Change" %} | {{ block.super }}{% endblock %} {% block extrastyle %}{{ block.super }} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}

{% translate "Change Password" %}

{% translate "Enter your current password then choose a new one. Changes are saved immediately." %}

{% include "admin/includes/toast.html" %}
{% csrf_token %} {% if form.errors %}
error {% blocktranslate count counter=form.errors.items|length %}Please correct the error below.{% plural %}Please correct the errors below.{% endblocktranslate %}
{% endif %}
{% translate "Current Password" %}
{% if form.old_password.errors %}

error {{ form.old_password.errors|striptags }}

{% endif %}
{% translate "New Password" %}
{% if form.new_password1.errors %}

error {{ form.new_password1.errors|striptags }}

{% endif %}
{% if form.new_password1.help_text %}
{{ form.new_password1.help_text|safe }}
{% endif %}
{% if form.new_password2.errors %}

error {{ form.new_password2.errors|striptags }}

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

info {{ form.new_password2.help_text }}

{% endif %}
{% endblock %}