feat: assignable managers for accommodation bookings

This commit is contained in:
Björn Fromme
2026-08-05 13:45:33 +02:00
parent 8e4afc0813
commit 736128476b
9 changed files with 247 additions and 1 deletions
@@ -47,6 +47,11 @@
Angenommen am {{ booking.acceptedAt | date('d.m.Y, H:i') }}
</p>
{% endif %}
{% if form.managedBy is defined %}
<div class="lg:col-span-2">
{{ form_row(form.managedBy) }}
</div>
{% endif %}
{{ form_row(form.accommodationDiscount) }}
{{ form_row(form.boardServiceDiscount) }}
{{ form_row(form.additionalServicesDiscount) }}
@@ -22,6 +22,9 @@
<th>
Personen
</th>
<th>
Betreuer:in
</th>
<th>
Status
</th>
@@ -49,6 +52,13 @@
<td>
{{ booking.paxCount }}
</td>
<td>
{% if booking.managedBy is not null %}
{{ booking.managedBy.email }}
{% else %}
keine Zuordnung
{% endif %}
</td>
<td>
{{ booking.status.label }}
</td>