isOffline not the best name for a boolean because the getter method also has isOffline .
If you cannot change the name of the property, then show that you want to call the method in the template with () .
<#if !websetting.isOffline()> false </#if>
But itβs better to change the name to something w / o is in front of it (for example, offline ). Then you can use it in the template.
<#if !websetting.offline> false </#if>
source share