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

{% trans "Sentry will automatically notify you whenever an event is first seen, or its state changes from resolved to unresolved." %}

{% blocktrans %}Alerts are triggered when the rate of events for the entire project increase by a relative amount. Values represent a 60-second interval.{% endblocktrans %}

{{ alert_form|as_crispy_errors }} {% for field in alert_form %} {{ field|as_crispy_field }} {% endfor %} {% if tag_forms %}

{% trans "Tag restrictions are based on your global notification rules. If tags are specified, notifications will be sent when they match any of the restrictions." %}

{% for tag_form in tag_forms %} {% endfor %}
{{ tag_form.values.label|titlize }} {{ tag_form.values }} {{ tag_form|as_crispy_errors }}
{% else %}

{% trans "We have not yet recorded any tags for this project." %}

{% endif %}
{% endblock %}