{% extends "sentry/layout.html" %} {% load i18n %} {% block title %}{% trans "Account Settings" %} | {{ block.super }}{% endblock %} {% block page_header %} {% endblock %} {% block heading %} {% trans "Account Settings" %} {% endblock %} {% block main %}
{% csrf_token %} {% if form.non_field_errors %}

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

    {% for error in form.non_field_errors %}
  • {{ error }}
  • {% endfor %}
{% 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 %} {% block sidebar %} {% include "sentry/partial/_account_sidebar.html" %} {% endblock %}