If Not Equal To
Complementing the if_eq function, there is also a if NOT equals to function.
This is done as follows i.e. if_ne
{{#each CurrentRevenueAccount.Transactions.PropertyCharges.Items}}
{{if_ne Description 'Disabled'}}
Not Disabled
{{/if_eq}}
{{/each}}
This is obviously only useful if there is only one thing you want to ignore.
Last updated
Was this helpful?