2👍
✅
Use items
function to display the keys and values of the dictionary in template:
{% for key, value in graphic.items %}
{% for item in value %}
{{ item }}
{% endfor %}
{% endfor %}
👤ndpu
Source:stackexchange.com