ifequal
Show a block when two values are equal.
The {% ifequal %} tag tests if its two arguments are equal. If so then the contents of the {% ifequal %} block are output, otherwise the contents of the optional {% else %} block are output.
For example:
{% ifequal value 5 %}
Value is equal to 5.
{% else %}
Value is {{ value }} which is not 5.
{% endifequal %}It is only possible to compare arguments that are variables (with optional filters) or constants. Examples of constants are numbers, strings or lists.
See also {% if %} and {% ifnotequal %} .
This page is part of the Zotonic documentation, which is licensed under the Apache License 2.0.