{% block head %}{% endblock %}
{% if current_user.is_authenticated %}
AufmaßWeb
{% if current_user.is_superadmin() %}
🌐 Superadmin
🏢 Firmenverwaltung
🔑 Lizenzverwaltung
{% endif %}
Dashboard
Projekte / Aufmaße
{% set initials = (current_user.vorname[0] if current_user.vorname else '') + (current_user.nachname[0] if current_user.nachname else '') %}
{% if current_user.profile_image %}
{% else %}
{{ initials or '?' }}
{% endif %}
{{ current_user.full_name }}
{{ current_user.rolle }}
👤 Profil
⚙ Einstellungen
{% if current_user.is_superadmin() %}
🏢 Firmenverwaltung
🔑 Lizenzverwaltung
{% endif %} {% if current_user.is_firmadmin() %}
🏢 Firmenverwaltung
{% endif %}
📋 Verträge
🔧 Modul-Builder
📂 LV-Verwaltung
🚪 Logout
{% endif %}
{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %}
{{ message }}
{% endfor %} {% endif %} {% endwith %} {% block content %}{% endblock %}
{% block scripts %}{% endblock %}