aboutsummaryrefslogtreecommitdiffstats
path: root/tests/template/templates/loop_twig.html
blob: fb24f331b3702c02dbbbd9a45e07b571291abd9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{% for test_loop_inner in test_loop %}
loop
{% else %}
noloop
{% endfor %}

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

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

{% for test_loop_inner in test_loop %}
{% for block_inner in block %}
loop#{{ test_loop_inner.S_ROW_COUNT }}-block#{{ block_inner.S_ROW_COUNT }}
{% endfor %}
{% endfor %}