I have the following code:
<#if !(task.dueDate??)><span class="datetime">Date: ${task.dueDate?string.medium_short!""}</span></#if>
It is supposed to protect from the situation in which dueDate is null but I still get the exception: Expression task.dueDate is undefined
Any ideas on how to solve?
Thanks,
Assaf