Is it possible to access the inner loop using the key of the outer loop in the Django template as follows?
{% for a in a_list %}
{% for b in b_list %} # ← this is a dict
<p>{{ b.a }}</p> # ← what i wan't to do!
{% endfor %}
{% endfor %}