I have a statement like this:
{{#if IsValid}}
I want to know how I can use a negative if
statement that would look like that:
{{#if not IsValid}}
You have many ways of doing that.
{{unless}}
:{{#unless isValid}}
...
{{else}}
...
{{/unless}}
{{#if (if isValid false true)}}
...
{{else}}
...
{{/if}}
{{#if (not isValid)}}
...
{{else}}
...
{{/if}}