Files
Twig/doc/tests/empty.rst
T
2011-09-27 08:43:35 +02:00

12 lines
224 B
ReStructuredText

``empty``
=========
``empty`` checks if a variable is empty:
.. code-block:: jinja
{# evaluates to true if the foo variable is null, false, or the empty string #}
{% if foo is empty %}
...
{% endif %}