aboutsummaryrefslogtreecommitdiffstats
path: root/testing/templates/for.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/templates/for.html')
-rw-r--r--testing/templates/for.html3
1 files changed, 3 insertions, 0 deletions
diff --git a/testing/templates/for.html b/testing/templates/for.html
index 8b4032d..f749752 100644
--- a/testing/templates/for.html
+++ b/testing/templates/for.html
@@ -1,3 +1,6 @@
{% for s in strings %}
{{- loop.index0 }}. {{ s }}{% if loop.first %} (first){% endif %}
{% endfor %}
+{% for (s1, s2) in tuple_strings %}
+ {{- loop.index0 }}. {{ s1 }},{{ s2 }}{% if loop.first %} (first){% endif %}
+{% endfor %}