I just used `has_content` yesterday in a template;...
# advancedpdf
e
I just used
has_content
yesterday in a template; works great. Where did you find it was no longer supported?
r
Hi Eric - recently used that as well. Use Case: I needed to determine if an Estimate was created from an Opportunity and if so include some custom text. Nothing is passed in the createdfrom field but a work around was to use
<#if record.opportunity?has_content>print x<#else>print y</#if>