KnotKnick
02/28/2023, 5:35 PM<#assign currentRoute = ''>
<#list results as result>
<#if result_index==0>
<tr class="header">
<td colspan="2">Route</td>
<td colspan="2">Vendor</td>
</tr>
</#if>
<#if result_index==1>
<#assign currentRoute = result.custbody_currentRoute>
</#if>
<#if result_index==2>
<pbr />
</#if>
<tr>
<td colspan="2">${result.custbody_currentRoute}</td>
<td colspan="2">${result.formulatext}</td>
</tr>
</#list>
I am using the pbr />
tag to do so (right now with a hardcoded condition). However, adding the pbr />
tag in the pdf template is throwing me an error. Could someone help me with this?KnotKnick
02/28/2023, 6:53 PMDavid B
02/28/2023, 11:05 PMitem_index
(normally I use item?index
)michoel
02/28/2023, 11:07 PMitem_index
is deprecatedDavid B
02/28/2023, 11:08 PM