-
Notifications
You must be signed in to change notification settings - Fork 12
Templates GDPR
Alexander Elchlepp edited this page Feb 22, 2026
·
1 revision
Applies to:
TEMPLATE_GDPR_PDF
-
customer(Customer)
Master data:
<p>[[ customer.salutation ]] [[ customer.firstname ]] [[ customer.lastname ]]</p>Addresses loop:
<div data-repeat="customer.customerAddresses" data-repeat-as="address">
[[ address.address ]]<br>
[[ address.zip ]] [[ address.city ]]
</div>Reservations with nested loop:
<div data-repeat="customer.reservations" data-repeat-as="reservation">
<span data-repeat="reservation.invoices" data-repeat-as="invoice">
[[ invoice.number ]],
</span>
</div>