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

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

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

{% for _underscore_loop_inner in _underscore_loop %}
{% for block_inner in block %}
loop#{{ loop.S_ROW_COUNT }}-block#{{ block_inner.S_ROW_COUNT }}
{% endfor %}
{% endfor %}