{% extends "alertprofiles/base_detail.html" %} {% block url_edit %}{% url alertprofiles-filters-save %}{% endblock %} {% block url_remove_expression %}{% url alertprofiles-filters-removeexpression %}{% endblock %} {% block url_add_expression %}{% url alertprofiles-filters-addexpression %}{% endblock %} {% block expressions_caption_content %} Expressions {% endblock %} {% block expressions_thead_cols %} {% if owner %} {% endif %} Field Condition Value {% endblock %} {% block expressions_tbody_content %} {% for e in expressions %} {% if owner %} {% else %} {{ e.match_field }} {% endif %} {{ e.get_operator_display }} {% ifequal e.operator 11 %} {% else %} {{ e.value }} {% endifequal %} {% endfor %} {% endblock %} {% block addexpression %} {% if owner %}

Add another expression to this filter

{{ block.super }}
{% endif%}

Expressions are ANDed together.
This means that an alert must match all the above expressions to match this filter.

{% endblock %}