{% extends 'gestion/base.html' %} {% load i18n %} {% block contents %}
    {% for cat in cat_clas %}
  • {{ cat }}
  • {% endfor %}
{% for cat, clas in cat_clas.items %}
    {% for c in clas %}
  • {{ c }}
  • {% endfor %}
{% endfor %}
{% endblock %}