blob: f74975293bf7aa4f671cb78fd59e898ca0dac517 (
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 %}
|