MariellaM
02/24/2022, 6:40 AMtuli
02/24/2022, 7:03 AMMariellaM
02/24/2022, 7:02 PMDavid B
02/24/2022, 8:56 PMMariellaM
02/25/2022, 12:34 AMMariellaM
02/25/2022, 12:34 AMDavid B
02/25/2022, 2:30 AM</#else>
closing tag, but that's actually incorrect for Freemarker (the engine that creates the </#else>
there may be). the correct pattern to use is:
<#if condition>
${iftrue}
<#elseif condition>
${elseiftrue}
<#else>
${else}
</#if>