{% extends "alertprofiles/base.html" %} {% block tabcontent %}
Below are short descriptions for each available operator. Note that for lists only "equals" and "in" makes sense.
An admin can make every operator available for any matchfield, even the ones that allows for list selection.
Equals | Exact match |
---|---|
Is greater | Match field value must be greater than entered value. |
Is greater or equal | Match field value must be greater than or equal entered value. |
Is less | Match field value must be less than entered value. |
Is less or equal | Match field value must be less than or equal entered value. |
Not equals | Oposite of equals. Match field value and entered value must not be the same. |
Starts with | Match field value must start with entered value. Will also return true if match field and entered value are the same. |
Ends with | Match field value must end with entered value. Will also return true if match field and entered value are the same. |
Contains | Somewhere in the match field value the entered value must appear. Will also return true if match field and entered value are the same. |
Regexp | Enter a regular expression to compare against the match field value. |
Wildcard | Same as equals, except you can use wildcards (? or *) to denote "anything goes here". |
In | Match field value must be one of the selected values. For lists, just select multiple values, for text fields you can separate the different values with space. |