mirror of
https://github.com/askama-rs/askama.git
synced 2025-09-28 05:21:14 +00:00
7 lines
123 B
HTML
7 lines
123 B
HTML
{% for seq in seqs -%}
|
|
{{ loop.index }}
|
|
{% for v in seq -%}
|
|
{{ loop.index0 }}{{ v }}
|
|
{%- endfor -%}
|
|
{% endfor %}
|