{% for elt in categories %} {% if not elt.parent %} {{ elt.name }}

{{ elt.name }}

    {% for sub_elt in categories %} {% if sub_elt.parent.name == elt.name %}
  • {{ sub_elt.name }}
  • {% endif %} {% endfor %}
{% endif %} {% endfor %}