{% load custom_tags_and_filters %}

Email alert rules

Configure who receives email when a condition is met or when there is no data for a field. Conditions use the variable value (e.g. value > 42).

{% if has_defined_columns and plottable_columns %}

Select the data entry field each alert should watch.

{% elif has_defined_columns %}

This monitor has no numeric fields; add a float or integer data entry field to use condition-based alerts.

{% endif %}
Add alert
{% csrf_token %} {% if has_defined_columns %}
{% endif %}
{% if monitor_alerts %}
Configured alerts
{% for alert in monitor_alerts %}
{% csrf_token %} {% if has_defined_columns %}
{% endif %}
{% if alert.triggered_on %} Currently triggered {% endif %}
{% endfor %} {% else %}

No email alerts configured yet.

{% endif %}