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

{% trans "General" %}


{% trans "Alerts" %}

Alerts are generated based on a project's rules, defined in [Project] » Settings » Rules.

{{ settings_form.subscribe_by_default|as_crispy_field }}

{% trans "Workflow" %}

{% blocktrans %}Workflow notifications are separate from alerts, and are generated for things like comments and issue updates. You may subscribe (or unsubscribe) from individual issues on their respective pages.{% endblocktrans %}

{{ settings_form.workflow_notifications|as_crispy_field }}

Note: You'll always receive notifications if you're explicitly participating on an issue.

{{ settings_form.self_notifications|as_crispy_field }}

{% trans "Weekly Reports" %}

{% blocktrans %}Reports contain a summary of what's happened within your organization over the last week.{% endblocktrans %}

{{ reports_form.organizations|as_crispy_field }}

{% trans "Fine Tuning" %}

Use the settings below to fine tune notification settings per-project.
Add or verify emails in the Emails Tab.

{% for project, form in project_forms %} {{ form|as_crispy_errors }} {% endfor %} {% for project, form in project_forms %} {% ifchanged project.organization %} {% if not forloop.first %} {% endif %}
{{ project.organization.name }}
{% endifchanged %} {% endfor %}
{% trans "Project" %} Alerts Workflow {% trans "Email Address" %}
{{ project.organization.slug}} / {{ project.slug }} {{ form.alert }} {{ form.workflow }} {% with form.email as field %} {{ field|as_crispy_field }} {% endwith %}
{% 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 %} {% block hosted_notifications %} {% endblock %}
{% endblock %}