Hey, guys, right now, if I want to check if a variable is defined before printing it I have to do:
{% if foo.bar is defined %}{{ foo.bar }}{% endif %}
Wouldn't it be nice to have a shortcut for this (in case it doesn't exist) ? Something similar to this:
{{ foo.bar ? "alternative text" }}