wip: booking summary for step 1

This commit is contained in:
Björn Fromme
2026-03-16 11:59:09 +01:00
parent 86e4866d6a
commit 4d51f0334f
4 changed files with 72 additions and 10 deletions
+15
View File
@@ -0,0 +1,15 @@
<div id="booking-summary">
<h3>Zusammenfassung</h3>
<h4>Zimmer</h4>
<ul class="list-disc list-inside pb-4">
{% for roomSelection in roomSummary %}
<li>
{{ roomSelection.quantity }} x {{ roomSelection.roomLabel }}
</li>
{% endfor %}
</ul>
<h4>Anzahl Teilnehmer</h4>
<p>
{{ participantCount }}
</p>
</div>