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

13 lines
211 B
ReStructuredText

``length``
==========
The ``length`` filters returns the number of items of a sequence or mapping, or
the length of a string:
.. code-block:: jinja
{% if users|length > 10 %}
...
{% endif %}