aboutsummaryrefslogtreecommitdiffstats
path: root/tests/template/templates/loop_expressions_twig2.html
diff options
context:
space:
mode:
Diffstat (limited to 'tests/template/templates/loop_expressions_twig2.html')
-rw-r--r--tests/template/templates/loop_expressions_twig2.html11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/template/templates/loop_expressions_twig2.html b/tests/template/templates/loop_expressions_twig2.html
new file mode 100644
index 0000000000..16159ead4c
--- /dev/null
+++ b/tests/template/templates/loop_expressions_twig2.html
@@ -0,0 +1,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 %}