mirror of
https://github.com/askama-rs/askama.git
synced 2025-09-29 22:11:17 +00:00
7 lines
233 B
HTML
7 lines
233 B
HTML
{% 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 %}
|