Today my team mate was struggling on how to add multiple conditions with 'and' or 'or' in an if statement in Nunjucks template. After a lot of search he found the answer but not on Stackoverflow. I am not sure if the answer is already posted somewhere in SO but thought to post it now to narrow down future searches.
Below is the answer:
var njglobals = require('nunjucks/src/globals'); njglobals. someVar = 'someValue'; You can now use someVar in your templates. Be sure not to overwrite any of the existing properties of the njglobals object, though (for [email protected] , they are range , cycler and joiner ).
A rich, high-performance JavaScript templating language, supported by all modern browsers. Nunjucks is customizable with extensions and filters; it offers inheritance, asynchronous control, autoescaping and other features. It also supports any version of Node.
Comments. You can write comments using {# and #} . Comments are completely stripped out when rendering.
Answer:
As we know Nunjucks is inspired by Jinja2 python's template engine, the if statement is similar to it.
// And Snippet {% if (VARIABLE > 10) and (VARIABLE < 20) %} // {% endif %} // Or Snippet {% if (VARIABLE == 10) or (VARIABLE == 20) %} // {% endif %}
Thats it !!!
Couldn't find this on Nunjucks documentation either. I believe this answer will be helpful as coders working on Nunjucks tend to search with keyword Nunjucks and not with Jinja.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With