{% extends "sentry/bases/account.html" %} {% load crispy_forms_tags %} {% load i18n %} {% load sentry_helpers %} {% block title %}{% trans "Notification Settings" %} | {{ block.super }}{% endblock %} {% block inner %}
{% csrf_token %}

{% blocktrans %}Notifications are generally sent when a new event is seen, an already resolved event has changed to unresolved, or a system-wide spike in events is detected.{% endblocktrans %}

{% with settings_form as form %}
{% trans "General" %}
{% include "sentry/partial/form_base.html" %}
{% endwith %} {% if project_forms %}
{% trans "Mail" %}

{% blocktrans %}Choose which projects you wish to receive email notifications for, as well as an alternative email address to send to.{% endblocktrans %}

{% blocktrans %}Note: You will never receive notifications if a project has them disabled (via the Project settings){% endblocktrans %}

{% for project, form in project_forms %} {{ form|as_crispy_errors }} {% endfor %} {% for project, form in project_forms %} {% ifchanged project.team %} {% if not forloop.first %} {% endif %} {% endifchanged %} {% endfor %}
{{ project.team.name }}
{% trans "Project Name" %} {% trans "Email Address" %}
{{ form.alert }} {% if form.email.value %}{{ form.email.value }}{% else %}default{% endif %} {{ form.email }}
{% endif %} {% for form in ext_forms %}
{{ form.get_title }}
{% with form.get_description as description %} {% if description %} {{ description|linebreaks }} {% endif %} {% endwith %} {% include "sentry/partial/form_base.html" %}
{% endfor %}
{% endblock %}