I've added support for checking whether variable exists or not.
It allows to create following conditions:
abc{% if True %}def{% endif %}ghi
abc{% if False %}def{% endif %}ghi
abc{% if not True %}def{% endif %}ghi
abc{% if not False %}def{% endif %}ghi
abc{% if its %}def{% endif %}ghi
abc{% if not its %}def{% endif %}ghi
It doesn't allow following syntax (yet):
abc{% if its is defined %}def{% endif %}ghi
I've added support for checking whether variable exists or not. It allows to create following conditions:
It doesn't allow following syntax (yet):
abc{% if its is defined %}def{% endif %}ghi