aboutsummaryrefslogtreecommitdiffstats
path: root/testing/templates/for-range.html
diff options
context:
space:
mode:
authorLibravatar yossyJ <28825627+yossyJ@users.noreply.github.com>2019-01-05 20:18:59 +0900
committerLibravatar Dirkjan Ochtman <dirkjan@ochtman.nl>2019-01-08 15:59:45 +0100
commitdf07f7f5e3345ced96decb0cb4c4f1bdfcdb1b12 (patch)
treee6619644eec17048143e1bca34ee37dc0701dae8 /testing/templates/for-range.html
parentc5c37f56a1232ff924a6bfda6c1c05e64a6241b1 (diff)
downloadaskama-df07f7f5e3345ced96decb0cb4c4f1bdfcdb1b12.tar.gz
askama-df07f7f5e3345ced96decb0cb4c4f1bdfcdb1b12.tar.bz2
askama-df07f7f5e3345ced96decb0cb4c4f1bdfcdb1b12.zip
Add support for loop.last
Diffstat (limited to '')
-rw-r--r--testing/templates/for-range.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/testing/templates/for-range.html b/testing/templates/for-range.html
index 9b109bb..3688478 100644
--- a/testing/templates/for-range.html
+++ b/testing/templates/for-range.html
@@ -1,5 +1,5 @@
{% for s in 0..2 -%}
- foo
+ foo{% if loop.first %} (first){% endif %}{% if loop.last %} (last){% endif %}
{% endfor -%}
{% for s in init..1 -%}