From bef88f1696b828caf72695561c2270456f35894d Mon Sep 17 00:00:00 2001 From: yossyJ <28825627+yossyJ@users.noreply.github.com> Date: Fri, 4 Jan 2019 23:12:44 +0900 Subject: Add support for tuple --- testing/templates/for.html | 3 +++ 1 file changed, 3 insertions(+) (limited to 'testing/templates/for.html') 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 %} -- cgit