**Describe the problem** How do I pass argument b to a for loop to jinja template? **Code snippet(s)** Example: ```python import eel eel.init("web") b = [1,2,3] eel.start("templates/main.html",size =(350, 400), jinja_templates='templates') ``` ```html <html> <label> <div>Example:</div> <select name="a"> {% for a in b %} <option value="{{ a }}">{{ a }}</option> {% endfor %} </select> </label> </html> ```
Describe the problem
How do I pass argument b to a for loop to jinja template?
Code snippet(s)
Example: