{% block content %}
{% for k, v in my_dict.items() %}
{{ k }} = {{ v }}
{% endfor %}
{% endblock %}
jinja2.exceptions.UndefinedError: 'my_dict' is undefined
The fix for #21 created this issue. Building the module when dictionary.items() is used raises an undefined exception because the variables were not present.
(likely a problem for any object.attribute access)
jinja2.exceptions.UndefinedError: 'my_dict' is undefined
The fix for #21 created this issue. Building the module when
dictionary.items()
is used raises an undefined exception because the variables were not present.(likely a problem for any
object.attribute
access)