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

{% if loop_inner.S_ROW_NUM is divisible by(4) %}yes{% else %}no{% endif %}

{% endfor %}

{% for loop_inner in loop %}

{% if loop_inner.S_ROW_NUM is divisible by(3) %}yes{% else %}no{% endif %}

{% endfor %}