{# templates/team/index.html.twig #} {% extends 'base.html.twig' %} {% block title %}{{ 'app.team.page_title'|trans }}{% endblock %} {% block body %}

{{ 'app.team.page_title'|trans }}

{# ── Aktive User ──────────────────────────────────────────────────── #}
{% for au in activeUsers %}
{{ au.user.fullName }} ({{ au.roleLabelKey|trans }}) {% if au.user.password is null %} {{ 'app.team.invite_pending'|trans }} {% endif %}
{% if au.user.id != currentUserId %} {% endif %}
{% endfor %} {# ── Ausstehende Einladungen ──────────────────────────────────── #} {% for invite in pendingInvites %}
{{ invite.firstName }} {{ invite.lastName }} ({{ invite.email }}) {{ 'app.team.invite_pending'|trans }}
{% endfor %} {% if activeUsers is empty and pendingInvites is empty %}
{{ 'app.team.empty_active'|trans }}
{% endif %}
{# ── Archivierte User ─────────────────────────────────────────────── #}
{# ── Einlade-Modal ────────────────────────────────────────────────────────────── #} {% endblock %} {% block javascripts %} {{ parent() }} {{ encore_entry_script_tags('team') }} {% endblock %}