{% 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 %} {% url 'sentry-project-rules' organization.slug project.slug as link %}

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

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

{% 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 %}
{% endblock %}