{% extends "sentry/bases/account.html" %} {% load crispy_forms_tags %} {% load i18n %} {% load sentry_helpers %} {% load sentry_features %} {% block title %}{% trans "Account Settings" %} | {{ block.super }}{% endblock %} {% block main %}
{% csrf_token %} {{ form|as_crispy_errors }} {% if request.user.has_unverified_emails %}
{% trans "Your email address has not been verified. " %} {% trans "Resend Verification Email" %}.
{% endif %} Your details

({% trans "Optional" %})

{% with form.new_password as field %} {{ field|as_crispy_field }} {% endwith %} {% endif %} {% feature auth:twofactor %} {% trans "Two-factor authenticaton" %} {% if has_2fa %}

{% trans "Manage" %} {% blocktrans %}Two-factor authentication is enabled.{% endblocktrans %}

{% else %}

{% trans "Enable" %} {% blocktrans %}Two-factor authentication is currently disabled.{% endblocktrans %}

{% endif %} {% endfeature %} {% if not form.is_readonly %}
{% endif %}
{% endblock %}