30 lines
755 B
Twig
30 lines
755 B
Twig
{% extends 'email/layout.html.twig' %}
|
|
|
|
{% block body %}
|
|
<h1>
|
|
Neue Unterkunfts{% if booking.inquiry %}anfrage{% else %}buchung{% endif %}
|
|
</h1>
|
|
|
|
{% if accessLink %}
|
|
<p>
|
|
<a href="{{ accessLink }}" class="button">Kundenansicht öffnen</a>
|
|
</p>
|
|
{% endif %}
|
|
|
|
<h2>Unterkunft</h2>
|
|
<table>
|
|
<tr>
|
|
<td><strong>Name</strong></td>
|
|
<td>{{ booking.accommodation.name }}</td>
|
|
</tr>
|
|
<tr>
|
|
<td><strong>Anreise</strong></td>
|
|
<td>{{ booking.dateFrom|date('d.m.Y') }}</td>
|
|
</tr>
|
|
<tr>
|
|
<td><strong>Abreise</strong></td>
|
|
<td>{{ booking.dateTo|date('d.m.Y') }}</td>
|
|
</tr>
|
|
</table>
|
|
{% endblock %}
|