Ability to nest conditions. Right now it is just #if or #if/#else
{{#if account.accountname}}{{account.accountname}}{{#else}}your organization{{#endif}}
{{#if account.accountname}}{{account.accountname}}{{#elseif company}}{{company}}{{#else}}your organization{{#endelseif}}{{#endif}}
OR
{{#if account.accountname}}{{account.accountname}}{{#else}}{{#if company}}{{company}}{{#else}}your organization{{#endif}}{{#endif}}{{#endif}}