How to make a variable in jijna2 default to \"\" if object is None instead of doing something like this?
{% if p %} {{ p.User[\'first_name\'
Following this doc you can do this that way:
{{ p.User['first_name']|default('NONE') }}