Template Test For Empty Phone Field

I’m working on a template and can’t figure out the code to test for an empty phone field (home, work, or mobile) on the Info screen. I’ve tried {{#CurrentClient.Info.Address.HomePhone=""}} but it doesn’t seem to pick up an empty field. I’ve also tried checking to see if the field “=0” but that doesn’t work either.

To test for a blank field try {{# isblank(CurrentClient.Info.Address.HomePhone)}} or you can try
{{# isempty(CurrentClient.Info.Address.HomePhone)}}.

Thanks @sarka. I’ll give that a shot.