D17339
09/02/2022, 2:21 PMDavid B
09/04/2022, 8:58 PM<#list record.item as line>
	<#if line?index != 0>
		previous line index is: ${line?index - 1}
		
		<#-- previous line object -->
		<#assign previousLine = record.item[line?index - 1] />
		<#-- note that "${previousLine?index}" doesn't work -->
	</#if>
</#list>David B
09/04/2022, 8:58 PM