{% 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 in forms %} {{ form|as_crispy_errors }}
    {{ form.get_title }}
    {% with form.get_description as description %} {% if description %} {{ description|linebreaks }} {% endif %} {% endwith %} {% for field in form %} {{ field|as_crispy_field }} {% endfor %}
    {% endfor %}
    {% endblock %}