{% extends "sentry/projects/manage.html" %} {% load i18n %} {% block inner %} {% if rule_list %} {% for rule in rule_list %} {% endfor %}
{{ rule.label }}
{% if rule.conditions %}
When
{% for condition in rule.conditions %} {{ condition }}
{% endfor %} {% endif %} {% if rule.actions %}
Do
{% for action in rule.actions %} {{ action }}
{% endfor %} {% endif %}
Delete
{% else %}

You have not yet created any rules. Rules allow you to tweak the behavior of Sentry in various situations, such as sending notifications.

{% endif %} {% endblock %}