{% if 4 % 2 == 0 %}Mod{% endif %} {% if 4 > 2 %}Greater Than{% endif %} {% if 4 >= 2 %}Greater Than or Equal{% endif %} {% if 2 < 4 %}Less Than{% endif %} {% if 2 <= 4 %}Less Than or Equal{% endif %} {% if 4 != 2 %}Not Equal{% endif %} {% if 4 == 4 %}Equal{% endif %} {% if "a" in [ "a", "b" ] %}In List{% endif %} {% if true or false %}True or False (literals){% endif %} {% if not 0 %}Not Zero{% endif %} {% if (4 == 2) or (4 != 2) %}Association{% endif %} {% if "Hello " + "world" == "Hello world" %}String Concatination{% endif %} {% if "ab" in "abd" %}Substring in String{% endif %} {% if item[key] == item.field %}Access Attribute{% endif %}