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