{% extends "sentry/account/base.html" %} {% load crispy_forms_tags %} {% load i18n %} {% load sentry_helpers %} {% block title %}{% trans "Notification Settings" %} | {{ block.super }}{% endblock %} {% block breadcrumb %} {{ block.super }}
  • /
  • {% trans "Notifications" %}
  • {% endblock %} {% block heading %} {% trans "Notification Settings" %} {% endblock %} {% block inner %}
    {% csrf_token %} {% for form, helper in forms %} {% if form.non_field_errors %}

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

    {% endif %}
    {{ form.get_title }}
    {% with form.get_description as description %} {% if description %} {{ description|linebreaks }} {% endif %} {% endwith %} {% crispy form helper %}
    {% endfor %}
    {% endblock %}