{% extends "sentry/projects/manage.html" %} {% load i18n %} {% block main %} {% trans "New Rule" %}

{% trans "Rules" %}

{% if rule_list %}
{% for rule in rule_list %}
Edit Rule
{% csrf_token %}

{{ rule.label }}

{% if rule.conditions %}
When {{ rule.match }} of these conditions are met:
{% for condition in rule.conditions %} {% endfor %}
{{ condition }}
{% endif %}
{% if rule.actions %}
Take these actions:
{% for action in rule.actions %} {% endfor %}
{{ action }}
{% endif %}
{% endfor %}
{% 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 %}