Benutzer Bearbeitung hinzugefügt

This commit is contained in:
Erik Thiele
2026-05-26 16:52:08 +02:00
parent df98b6d57f
commit 0913f69c70
10 changed files with 4894 additions and 20 deletions

View File

@@ -80,12 +80,13 @@
<th>Türchip</th>
<th>Parkkarte</th>
<th>Poolfahrzeug</th>
<th></th>
</tr>
</thead>
<tbody>
{% for user in users %}
<tr>
<td>{{ user.full_name }}</td>
<td>{% set parts = user.full_name.rsplit(' ', 1) %}{{ parts[1] }}, {{ parts[0] }}</td>
<td>{{ user.email or "-" }}</td>
<td>{{ user.department or "-" }}</td>
<td>
@@ -112,6 +113,7 @@
-
{% endif %}
</td>
<td><a class="btn btn-sm btn-outline-secondary" href="{{ url_for('edit_user', user_id=user.id) }}"><i class="ti ti-edit"></i></a></td>
</tr>
{% endfor %}
</tbody>