[Django]-Iterating through json list in Django template

4👍

You are on the right track. All you need to do is to iterate through value as well:

{% for key, value in test.items %}
    {% for dct in value %}
        {% for k, sum in dct.items %}
            {{ key }}: {{ sum }} <br />
        {% endfor %}
    {% endfor %}
{% endfor %}

Leave a comment