{{ var|default('var is not defined') }}
{{ var.foo|default('foo item on var is not defined') }}
+
{{ var['foo']|default('foo item on var is not defined') }}
{{ ''|default('passed var is empty') }}
+When using the ``default`` filter on an expression that uses variables in some
+method calls, be sure to use the ``default`` filter whenever a variable can be
+undefined:
+
+.. code-block:: jinja
+
+ {{ var.method(foo|default('foo'))|default('foo') }}
+
.. note::
Read the documentation for the :doc:`defined<../tests/defined>` and
{% if foo['bar'] is defined %}
...
{% endif %}
+
+When using the ``defined`` test on an expression that uses variables in some
+method calls, be sure that they are all defined first:
+
+.. code-block:: jinja
+
+ {% if var is defined and foo.method(var) is defined %}
+ ...
+ {% endif %}