-
Notifications
You must be signed in to change notification settings - Fork 15
Templates Reservation
Alexander Elchlepp edited this page Feb 22, 2026
·
1 revision
Applies to:
TEMPLATE_RESERVATION_PDFTEMPLATE_REGISTRATION_PDFTEMPLATE_RESERVATION_EMAIL
-
reservation1(Reservation, the first selected reservation) -
reservations(Collection<Reservation>) -
address(CustomerAddresses) -
sumApartment,sumMisc,totalPrice(formatted totals) -
sumApartmentRaw,sumMiscRaw,totalPriceRaw(raw values) -
apartmentPositions(Collection<InvoiceAppartment>) -
miscPositions(Collection<InvoicePosition>)
Address block:
<p>[[ reservation1.booker.salutation ]] [[ reservation1.booker.lastname ]]<br>
[[ address.address ]]<br>
[[ address.zip ]] [[ address.city ]]</p>Table loop:
<tr data-repeat="apartmentPositions" data-repeat-as="position">
<td>[[ position.description ]]</td>
<td>[[ position.totalPrice ]] €</td>
</tr>Loop outside a table:
<span data-repeat="miscPositions" data-repeat-as="position">
[[ position.description ]]: [[ position.totalPrice ]] €<br>
</span>