In my views.py, I\'m building a list of two-tuples, where the second item in the tuple is another list, like this:
[ Product_Type_1, [ product_1, product_2 ]
You must used this way:
{% for product_type, products in product_list.items %} print product_type {% for product in products %} print product {% endfor %} {% endfor %}
Don't forget the variable items in the dictionary data