From df07f7f5e3345ced96decb0cb4c4f1bdfcdb1b12 Mon Sep 17 00:00:00 2001 From: yossyJ <28825627+yossyJ@users.noreply.github.com> Date: Sat, 5 Jan 2019 20:18:59 +0900 Subject: Add support for loop.last --- testing/templates/precedence-for.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'testing/templates/precedence-for.html') diff --git a/testing/templates/precedence-for.html b/testing/templates/precedence-for.html index c8d2cdd..57c900b 100644 --- a/testing/templates/precedence-for.html +++ b/testing/templates/precedence-for.html @@ -1,3 +1,3 @@ {% for s in strings %} - {{- loop.index0 }}. {{ s }}{{ 2 * loop.index }}{% if !loop.first %}{% else %} (first){% endif %} + {{- loop.index0 }}. {{ s }}{{ 2 * loop.index }}{% if !loop.first %}{% else %} (first){% endif %}{% if loop.last %} (last){% endif %} {% endfor %} -- cgit