{% extends "sb_admin/sb_admin_base.html" %} {% load i18n static %} {% load admin_urls %} {% block content %}

{% trans 'Change password' %}

{% csrf_token %}
{% if is_popup %}{% endif %} {% if form.errors %}
{% blocktrans count form.errors.items|length as counter %}Please correct the error below.{% plural %}Please correct the errors below.{% endblocktrans %}
{{ adminform.form.non_field_errors }} {% endif %}
{% blocktranslate with username=original %}Enter a new password for the user {{ username }}.{% endblocktranslate %}
{{ form.password1 }}
{% if form.password1.errors %}
{{ form.password1.errors }}
{% endif %}
{{ form.password2 }}
{% if form.password2.errors %}
{{ form.password2.errors }}
{% endif %}
{% endblock %}