{% endif %} {% if rows[0] is not iterable %} {% for value in rows %} | {{ value }} | {% endfor %}
---|---|
{{ value }} | {{ value }} | {% endfor %} {% for i in range(1, rows|length) %}
{{ tags[i-1] }} | {% endif %} {% for value in rows[i] %}{{ value }} | {% endfor %}
The content filter must be a boolean expression.
Examples:
f1 < 5
This selects elements where the field f1 is less than 5.
f3
This selects elements where the field f3 is true. Only for boolean fields.
f1 < f3
This selects elements where the field f1 is less than the field f3.
(f1 < 5) & (f2 > 3)
This selects elements where the field f1 is less than 5 and the field f2 is greater than 3. Note the parentheses around each condition.
(f1 < 5) | ((sin(f2) - log(f4)) > 3) & (~f3)
This selects elements where the field f1 is less than 5 or the result of the expression sin(f2) - log(f4) is greater than 3 and the field f3 is false. Note the parentheses around each condition and the use of the negation operator ~.