{% extends 'base.html' %} {% load i18n %} {% block title %}{% trans "Change password" %}{% endblock %} {% block content %} {% if form.non_field_errors %}
{% endif %} {% if form.errors %}
{% blocktrans count counter=form.errors.items|length %} Please correct the error below. {% plural %} Please correct the errors below. {% endblocktrans %}
{% endif %}
{% csrf_token %} {% for field in form %} {{ field.errors }} {{ field.label_tag }} {{ field }} {% endfor %}
{% endblock %}