{% 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 %} {% include "sb_admin/includes/form_error_alert.html" with errors_count=form.errors.items|length non_field_errors=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 %}