{% extends 'base.html' %} {% load i18n staticfiles tz stats %} {% block title %}{% trans 'Password reset' %} / {{ block.super }}{% endblock title %} {% block content %}
{% trans 'Password reset' %}
{% if form.non_field_errors %}
{% for error in form.non_field_errors %}
{{ error }}
{% endfor %}
{% endif %} {% csrf_token %} {% for field in form %}
{% if field.help_text %}
{{ field.help_text }}
{% endif %}
{{ field }}
{% if field.errors %} {% for error in field.errors %}
{{ error }}
{% endfor %} {% endif %}
{% endfor %}
{% endblock content %} {% block bottom %} {{ block.super }} {% endblock bottom %}