{% extends 'admin/layout.html.twig' %} {% block title %}Teamübersicht{% endblock %} {% block content %}
| {{ knp_pagination_sortable(pagination, 'Name', 'teamer.lastName') }} | Vorname | {{ knp_pagination_sortable(pagination, 'Status', 'teamer.status') }} | {{ knp_pagination_sortable(pagination, 'E-Mail', 'teamer.communication.email') }} | {{ knp_pagination_sortable(pagination, 'Letzter Login', 'user.lastLoginAt') }} | ||
|---|---|---|---|---|---|---|
|
{% if teamer.photo %}
{{ icon('user', 'w-10 h-10 text-gray-200') }}
{% endif %}
|
{{ teamer.lastName }} | {{ teamer.firstName }} | {{ teamer.status|teamer_status_label }} | {{ teamer.communication.email }} | {% if teamer.user.lastLoginAt is not null %} {{ teamer.user.lastLoginAt | date('d.m.Y') }} {% else %} - {% endif %} | Keine Daten... | {% endfor %}