53 lines
1.9 KiB
Twig
53 lines
1.9 KiB
Twig
{% extends 'layout_admin.html.twig' %}
|
|
|
|
{% block content %}
|
|
<twig:page:heading>Benutzeraccounts</twig:page:heading>
|
|
<div class="data-table-wrapper">
|
|
<div class="data-table-wrapper__inner text-sm">
|
|
<table class="data-table">
|
|
<thead>
|
|
<tr>
|
|
<th>
|
|
{{ knp_pagination_sortable(pagination, 'E-Mail', 'user.email') }}
|
|
</th>
|
|
<th>
|
|
{{ knp_pagination_sortable(pagination, 'BusPro Adress Id', 'user.addressId') }}
|
|
</th>
|
|
<th>
|
|
{{ knp_pagination_sortable(pagination, 'BusPro Personen Id', 'user.personId') }}
|
|
</th>
|
|
<th>
|
|
{{ knp_pagination_sortable(pagination, 'Letzter Login', 'user.lastLoginAt') }}
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for user in pagination %}
|
|
<tr>
|
|
<td>
|
|
{{ user.email }}
|
|
</td>
|
|
<td>
|
|
{{ user.addressId | default('-') }}
|
|
</td>
|
|
<td>
|
|
{{ user.personId | default('-') }}
|
|
</td>
|
|
<td>
|
|
{{ user.lastLoginAt | date('d.m.Y, H:i') }}
|
|
</td>
|
|
</tr>
|
|
{% else %}
|
|
<tr>
|
|
<td colspan="2">
|
|
Keine Daten...
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
{{ knp_pagination_render(pagination) }}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|