Equality

Equals

Supported symbols are = and ==

Equals Example


{% if TestValue = 'Testing' %}Is Testing{% else %}Is Not Testing{% endif %}


{% if TestValue == 'Testing' %}Is Testing{% else %}Is Not Testing{% endif %}

Not Equals

Supported symbol is !=

Not Equals Example


{% if TestValue != 'Testing' %}Is Not Testing{% else %}Is Testing{% endif %}