{% extends "sentry/bases/account.html" %} {% load crispy_forms_tags %} {% load i18n %} {% load sentry_helpers %} {% block title %}{% trans "Account Settings" %} | {{ block.super }}{% 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 %} {{ field|as_crispy_field }} {% endif %} {% endwith %}
{{ request.user.username }}
{% with form.first_name as field %} {{ field|as_crispy_field }} {% endwith %} {% with form.email as field %} {{ field|as_crispy_field }} {% endwith %}

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

{% with form.new_password as field %} {{ field|as_crispy_field }} {% endwith %}
{% endblock %}