{% extends "registration/base.html" %} {% load i18n %} {% load common %} {% block content %}

{% block page_title %}{% trans "Password change" %}{% endblock %}

{% trans "Please enter your old password, for security's sake, and then enter your new password twice so we can verify you typed it in correctly." %}

{% csrf_token %} {% field form.old_password %} {% field form.new_password1 %} {% field form.new_password2 %}
{% if user.is_staff %} {% trans "Return to admin" %} {% endif %}
{% endblock %}