I have a statement like below,
{{#ifCond IsTrue}}
how can i use ifCond statement with not like below,
{{#ifCond not IsTrue}}
I have a statement like below,
{{#ifCond IsTrue}}
how can i use ifCond statement with not like below,
{{#ifCond not IsTrue}}
You can use an else statement:
{{#ifCond a b}}
{{!-- a is equal to b. --}}
{{else}}
{{!-- a is not equal to b --}}
{{/ifCond}}