aboutsummaryrefslogtreecommitdiffstats
path: root/tests/template/templates/loop_expressions_twig2.html
blob: 16159ead4ca301af40f4ff2cb3c9646575a08643 (plain)
1
2
3
4
5
6
7
8
9
10
11
{% for loop_inner in loop %}

{% if loop.index0 is divisible by(4) %}yes{% else %}no{% endif %}

{% endfor %}

{% for loop_inner in loop %}

{% if loop.index0 is divisible by(3) %}yes{% else %}no{% endif %}

{% endfor %}