I am passing a dictionary to template. Each dictionary value is True or False and I want to check it value in the template.
{{=default_fields['job_title']}} renders to "True"
but this construct is returning "SyntaxError: invalid syntax":
{{ if {{=default_fields['job_title']}}: }}
{{ pass }}
How to check a value in a dictionary entry in template?

