Código Python:
Ver originaldef category_subcategory_list(request):
template = 'category_subcategory_list.html'
context = {
'categorias': Categoria.objects.select_related().all(),
}
return render(request, template, context)
Código HTML:
Ver original {% for categoria in categorias %}
{% for subcategoria in categoria.categoria_set.all %}
<p>{{ subcategoria.nombre }}
</p> {% for subsubcategoria in subcategoria.categoria_set.all %}
<p>{{ subsubcategoria.nombre }}
</p> {% endfor %}
{% endfor %}
{% endfor %}