I'm trying to run this:
{%- include '{name}.sql'.format(name=name) -%} but the thing is, from time to time the files I will try to include won't exist.
I've found this as a solution to catch the exception and return value:
{%- include '{name}.sql'.format(name=name) ignore missing -%} and it does catch the exceptions, but the thing is that it has a default value of '',
How can I set the default value of whatever I want?