{% extends "admin/base_site.html" %} {% load i18n static jazzy_tabler admin_urls %} {% get_jazzy_ui_tweaks as jazzy_ui %} {% block extrahead %}{{ block.super }} {% endblock %} {% block bodyclass %}{{ block.super }} {{ opts.app_label }}-{{ opts.model_name }} change-form{% endblock %} {% if not is_popup %} {% block breadcrumbs %} {% endblock %} {% endif %} {% block content_title %}{% trans 'Change password' %}{% endblock %} {% block content %}
{% if form.errors %}
{% if errors|length == 1 %} {% trans "Please correct the error below." %} {% else %} {% trans "Please correct the errors below." %} {% endif %}
{% endif %}

{% blocktrans with username=original %}Enter a new password for the user {{ username }}.{% endblocktrans %}

{% csrf_token %} {% block form_top %}{% endblock %}
{% if is_popup %}{% endif %}
{{ form.password1 }} {% if form.password1.help_text %} {{ form.password1.help_text|safe }} {% endif %}
{% if form.password1.errors %}
{{ form.password1.errors }}
{% endif %}
{{ form.password2 }} {% if form.password2.help_text %} {{ form.password2.help_text|safe }} {% endif %}
{% if form.password2.errors %}
{{ form.password2.errors }}
{% endif %}
{% endblock %}