Is there a way to do a conditional "and" or "or" in a Meteor template? What I am trying to do is something like this:
{{#if isInRole 'ADMIN' || isInRole 'INSPECTOR'}}
...do some stuff
{{/if}}
using helpers provided by a 3rd party package alanning:roles
. This seems to have come up multiple times in my coding with Meteor and I can and have worked around it, usually by duplication of the block code, but it would be really nice if there already existed some way to handle an OR or AND condition without crazy gyrations.