Is it possible to create a condition in PDF template that is a combination of two comparisons (ie. if this and that). Code below doesn't work. Is there some other syntax?
{{#if 'p' [=] 'k [&] 'j' [=] 'k'}}
false
{{/if}}
{{#if 'p' [=] 'p' [&] 'j' [=] 'j'}}
true
{{/if}}
{{#if 'p' [=] 'k [&] 'j' [=] 'k'}}
false
{{/if}}
{{#if 'p' [=] 'p' [&] 'j' [=] 'j'}}
true
{{/if}}
Comment