blob: 3d4533b1c417b25a1948ceabfd2e30857eace7f3 (
plain) (
blame)
1
2
3
4
5
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 %}
|