both: {% if a and b %}yes{% else %}no{% endif %} .
either: {% if a or b %}yes{% else %}no{% endif %} .
missingA: {% if not a %}yes{% else %}no{% endif %} .
