feat: import users` real names from bpn API

This commit is contained in:
Björn Fromme
2026-08-17 14:24:56 +02:00
parent bf69fcceff
commit 77de1643f0
11 changed files with 96 additions and 7 deletions
@@ -60,7 +60,7 @@
</td>
<td>
{% if booking.managedBy is not null %}
{{ booking.managedBy.email }}
{{ booking.managedBy.displayName }}
{% else %}
keine Zuordnung
{% endif %}
+7 -1
View File
@@ -13,6 +13,9 @@
<table class="data-table">
<thead>
<tr>
<th>
{{ knp_pagination_sortable(pagination, 'Name', 'user.lastName') }}
</th>
<th>
{{ knp_pagination_sortable(pagination, 'E-Mail', 'user.email') }}
</th>
@@ -37,6 +40,9 @@
<tbody>
{% for user in pagination %}
<tr>
<td>
{{ user.fullName | default('-') }}
</td>
<td>
{{ user.email }}
</td>
@@ -65,7 +71,7 @@
</tr>
{% else %}
<tr>
<td colspan="7">
<td colspan="8">
{{ filter.isActive ? 'Keine Treffer für diesen Filter.' : 'Keine Daten...' }}
</td>
</tr>