{% extends "sentry/account/base.html" %} {% 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 %} {% if form.non_field_errors %}

    {% trans "There were errors saving your changes:" %}

    {% endif %}

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

    {% with form.old_password as field %} {% include "sentry/partial/_form_field.html" %} {% 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_password1 as field %} {% include "sentry/partial/_form_field.html" %} {% endwith %} {% with form.new_password2 as field %} {% include "sentry/partial/_form_field.html" %} {% endwith %}
    {% endblock %}