With Jinja2, how can I make an iteration like the folllowing which works with django and not Jinja:
{% for key,value in location_map_india.items %} {{value.n
In Jinja2, functions and methods must be explicitly called.
{% for key,value in location_map_india.items() %} {{value.name}} {% endfor %}