I have a jinja variable and I have passed that variable to the HTML file, but in that HTML, that code has to be passed to another HTML file that is included in it.
For eg:
The current situation is like this:
{% include "navbar.html" %} <div> ....... </div> So, in the HTML file, I want to pass that variable to "navbar.html" as I have to use that variable in the "navbar.html" file.
It would be great if anybody could help me out.