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

@@ -15,7 +15,7 @@
<select class="form-select" name="user_id" required>
<option value="">Bitte waehlen</option>
{% for user in users %}
<option value="{{ user.id }}">{{ user.full_name }}</option>
<option value="{{ user.id }}">{{ user.full_name.rsplit(' ', 1)[1] }}, {{ user.full_name.rsplit(' ', 1)[0] }}</option>
{% endfor %}
</select>
</div>