feat: Enhance client booking experience with booking name visibility and success page

This commit is contained in:
2026-05-31 19:20:40 +02:00
parent 0b1bcef985
commit 46da45d373
4 changed files with 212 additions and 27 deletions
+8 -1
View File
@@ -69,7 +69,14 @@
<div class="fw-semibold mb-2">Bereits gebucht</div>
<ul class="mb-0 small">
{% for booking in available.slots_booked %}
<li>{{ booking.start }}{% if booking.name %} - {{ booking.name }}{% endif %}</li>
<li>
{{ booking.start }}
{% if can_view_booking_names and booking.name %}
- {{ booking.name }}
{% else %}
- Belegt
{% endif %}
</li>
{% endfor %}
</ul>
</div>