{% extends 'admin/layout.html.twig' %} {% block title %}Administrative Benutzer:innen{% endblock %} {% block content %}

Administrative Benutzer:innen

{% for user in users %} {% else %} {% endfor %}
Name Vorname E-Mail Rolle(n) Superadmin Letzter Login
{{ user.lastName }} {{ user.firstName }} {{ user.email }} {{ user.rolesLabels|join(', ') }} {% if user.superAdmin %} {{ icon('check', 'w-4 h-4 inline-block') }} {% endif %} {{ user.lastLoginAt ? user.lastLoginAt|date('d.m.Y, H:i') : '-' }} {% if is_granted('CAN_IMPERSONATE', user) %} {{ icon('mask', 'w-4 h-4') }} {% endif %}
Keine Daten...
{% endblock %}