What construct should I use to check whether a value is NULL in a Twig template?
//test if varibale exist {% if var is defined %} //todo {% endif %} //test if variable is not null {% if var is not null %} //todo {% endif %}