add some stuff

This commit is contained in:
Constantin Simonis 2025-02-04 19:35:05 +01:00
parent 5f68d12967
commit 3870207471
Signed by: csimonis
GPG Key ID: 3878FF77C24AF4D2

View File

@ -7,20 +7,22 @@
<body>
Hallo {{ payment.customer.firstname }}
<br>
text
placeholder text
<br>
<br>
<hr>
{% for ticket in payment.customer.tickets %}
{{ (ticket.type | ticket)['name'] }} ({{ (ticket.type | ticket)['price'] }}€)
Ticket: {{ (ticket.type | ticket)['name'] }} ({{ (ticket.type | ticket)['price'] }}€)
<br>
{{ ticket.foodType | food }}
Essen: {{ ticket.foodType | food }}
<br>
{% if ticket.note %}
Anmerkung: {{ ticket.note }}
<br>
{{ ticket.note }}
{% endif %}
{% if not loop.last %}
<hr>
{% endif %}
{% endfor %}
<br>
Gesamtpreis: {{ payment.total }}
</body>
</html>