Démarches et services publics

    {% for item in menu %} {% if item.title == "Espace famille" and user.is_authenticated %}
  • {{ item.title }}
  • {% elif item.title == "Espace médiathèque" and user.is_authenticated %}
  • {{ item.title }}
  • {% elif item.title == "Espace conservatoire" and user.is_authenticated %}
  • {{ item.title }}
  • {% else %}
  • {{ item.title }}
  • {% endif %} {% if item.sub_items %}
      {% for subitem in item.sub_items %}
    • {{ subitem.title }}
    • {% endfor %}
    {% endif %} {% endfor %}