is there default filter like ${name | default:'nohting' } in mako template

407 Views Asked by At
${name | default:'nohting' }

if name is False,I want to use a default value like nothing replaced

1

There are 1 best solutions below

0
On

there is no default filter like that

But you can use your own customized template tags for that

https://docs.djangoproject.com/en/dev/howto/custom-template-tags/