From 6323e4d8b54e6a0aa38e22dbf0b24431cff859d4 Mon Sep 17 00:00:00 2001 From: yossyJ <28825627+yossyJ@users.noreply.github.com> Date: Wed, 9 Jan 2019 20:47:47 +0900 Subject: [PATCH] Add loop.last to the document --- askama/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/askama/src/lib.rs b/askama/src/lib.rs index 725c3dedb..e613f508f 100644 --- a/askama/src/lib.rs +++ b/askama/src/lib.rs @@ -280,6 +280,7 @@ //! * *loop.index*: current loop iteration (starting from 1) //! * *loop.index0*: current loop iteration (starting from 0) //! * *loop.first*: whether this is the first iteration of the loop +//! * *loop.last*: whether this is the last iteration of the loop //! //! ### If //!