{% extends "sentry/account/base.html" %} {% load crispy_forms_tags %} {% load i18n %} {% load sentry_helpers %} {% block title %}{% trans "Account Settings" %} | {{ block.super }}{% endblock %} {% block breadcrumb %} {{ block.super }}
  • /
  • {% trans "Account" %}
  • {% endblock %} {% block heading %} {% trans "Account Settings" %} {% endblock %} {% block inner %}
    {% csrf_token %} {{ form|as_crispy_errors }}

    {% trans "To make changes to your account, you must first enter your current password." %}

    {% with form.old_password as field %} {% if field %} {% include "sentry/partial/_form_field.html" %} {% endif %} {% endwith %}
    {{ request.user.username }}
    {% with form.first_name as field %} {% include "sentry/partial/_form_field.html" %} {% endwith %} {% with form.email as field %} {% include "sentry/partial/_form_field.html" %} {% endwith %} {% with form.language as field %} {% include "sentry/partial/_form_field.html" %} {% endwith %}

    {% trans "You may also optionally change your password." %}

    {% with form.new_password as field %} {% include "sentry/partial/_form_field.html" %} {% endwith %}
    {% endblock %}