{% extends 'user/base.html' %} {% load assets i18n %} {% block title %}{% trans 'Settings' %} | {{ block.super }}{% endblock %} {% block breadcrumbs %}
  • {{ object.display_name }}
  • {% trans 'Settings' %}
  • {% endblock %} {% block content %}

    {% trans 'User Account' %}

    {% blocktrans trimmed %} Do you want to change your password? Click the 'Reset Password' button which will initiate the process of setting a new password. {% endblocktrans %}

    {% trans 'Translation' %}

    {% csrf_token %} {{ form.non_field_errors }} {% for field in form %}

    {{ field.errors }} {{ field.label_tag }} {{ field }} {% if field.help_text %}{{ field.help_text }}{% endif %}

    {% endfor %}

    {% endblock %} {% block scripts_extra %} {% endblock %}