What construct should I use to check whether a value is NULL in a Twig template?
|
feedback
|
|
Depending on what exactly you need:
Additionally the
| ||||
|
feedback
|
|
use default: http://twig.sensiolabs.org/doc/filters/default.html
or if you don't want it to display when null:
| |||||||
feedback
|
|
I don't think you can. This is because if a variable is undefined (not set) in the twig template, it looks like Due to the lack of a "identity" in Twig (
Which translates to:
Which if your good at your type juggling, means that things such as My suggest is to ask for the identity to be implemented into Twig. | |||||||||||
feedback
|