aboutsummaryrefslogtreecommitdiffstats
path: root/tests/template/templates/loop_size_twig.html
blob: f6d2571e11b0b8085a1e8b97116958c1fba70059 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{% if nonexistent_loop|length %}
nonexistent
{% endif %}

{% if nonexistent_loop|length == 0 %}
nonexistent = 0
{% endif %}

{% if ! nonexistent_loop|length %}
! nonexistent
{% endif %}

{% if empty_loop|length %}
empty
{% endif %}

{% if empty_loop|length == 0 %}
empty = 0
{% endif %}

{% if ! empty_loop|length %}
! empty
{% endif %}

{% if test_loop|length %}
loop
{% endif %}

{% if test_loop|length == 0 %}
loop = 0
{% endif %}

{% if ! test_loop|length %}
! loop
{% endif %}

{% for test_loop_inner in test_loop %}
in loop
{% endfor %}