not
Not inverts the truthiness of the value.
Not inverts the truthiness of the value.
Input
any
Parameters
None
Returns
bool
Examples
Invert an account status
Input
is_active = trueTemplate
{{ is_active | not }}Output
falseDetect a clean run with no errors
Input
errors = []Template
{{ errors | not }}Output
trueHow is this guide?