{% set pfad = request.url.path %}
{% set aktiver_bereich =
"flotte" if pfad.startswith("/geraete")
else "organisation" if (pfad.startswith("/organisation") or pfad.startswith("/struktur") or pfad.startswith("/gruppen"))
else "installationsmedium" if pfad.startswith("/installationsmedium")
else "admin" if pfad.startswith("/admin")
else "" %}
{% set aktive_unterseite =
"organisation" if pfad.startswith("/organisation")
else "struktur" if pfad.startswith("/struktur")
else "gruppen" if pfad.startswith("/gruppen")
else "" %}
{% if user %}
{% if aktiver_bereich == "organisation" %}
{% endif %}
{% else %}
{% endif %}
{% block content %}{% endblock %}
{% if user %}