{% extends "sentry/projects/manage.html" %} {% load crispy_forms_tags %} {% load i18n %} {% load sentry_helpers %} {% load sentry_plugins %} {% block title %}{% trans "Notifications" %} | {{ block.super }}{% endblock %} {% block main %}

{% trans "Notifications" %}

{% csrf_token %}

{% trans "Rules" %}

{% url 'sentry-project-rules' organization.slug project.slug as link %}

{% blocktrans %}Sentry will notify you based on the rules configured for this project.{% endblocktrans %}

{% trans "General" %}

{{ general_form|as_crispy_errors }} {% for field in general_form %} {{ field|as_crispy_field }} {% endfor %}

{% trans "Digests" %}

Sentry will automatically digest notifications sent by some services to avoid flooding your inbox with individual issue notifications. To control how frequently notifications are delivered, use the sliders below.

{{ digests_form|as_crispy_errors }}
{% for field in digests_form %}
{{ field|as_crispy_field }}
{% endfor %}
{% for plugin, content in enabled_plugins %}
{% if plugin.can_disable %}
{% csrf_token %}
{% endif %}

{{ plugin.get_title }}

{{ content }}
{% endfor %} {% if other_plugins %}

{% trans "Inactive Integrations" %}

{% endif %} {% endblock %}