What construct should I use to check whether a value is NULL in a Twig template?
You can also use one line to do that:
{{ yourVariable is not defined ? "Not Assigned" : "Assigned" }}