diff options
Diffstat (limited to '')
-rw-r--r-- | testing/templates/nested-for.html | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/testing/templates/nested-for.html b/testing/templates/nested-for.html new file mode 100644 index 0000000..6e0cd72 --- /dev/null +++ b/testing/templates/nested-for.html @@ -0,0 +1,6 @@ +{% for seq in seqs -%} + {{ loop.index }} + {% for v in seq -%} + {{ loop.index0 }}{{ v }} + {%- endfor -%} +{% endfor %} |