1
{% for obj in content %}
2
<div>
3
{% for key in content[obj].keys() %}
4
{{ key }}: {{ content[obj][key] }}
5
{% endfor %}
6
</div>
7
{% endfor %}