askama/testing/templates/for-range.html
2019-01-08 15:59:45 +01:00

16 lines
259 B
HTML

{% for s in 0..2 -%}
foo{% if loop.first %} (first){% endif %}{% if loop.last %} (last){% endif %}
{% endfor -%}
{% for s in init..1 -%}
bar
{% endfor -%}
{% for s in 0..end -%}
foo
{% endfor -%}
{% for s in init..end -%}
bar
{% endfor -%}