06 Feb
This commit is contained in:
parent
98bd71c760
commit
8b2ec705c9
83 changed files with 3467 additions and 1214 deletions
|
|
@ -1,16 +1,54 @@
|
|||
{% if(isPossible) %}
|
||||
<table class="st-booking-table">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td class="st-position-price-col">
|
||||
+ {{ total_price_per_night|number_format(2) }} €
|
||||
Datum:
|
||||
</td>
|
||||
<td class="st-position-name-col">
|
||||
({{ fewo_booking_request.numberDays }} {{ fewo_booking_request.numberDays < 2 ? 'Nacht' : 'Nächte' }} x {{ fewo_price.perNight|number_format(2) }} €)
|
||||
{{ fewo_booking_request.fromDate|date }} - {{ fewo_booking_request.toDate|date }}
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2"><hr style="margin-top: 0; margin-bottom: 0"></td>
|
||||
</tr>
|
||||
|
||||
{% for season, values in priceResult.season %}
|
||||
<tr>
|
||||
<td class="st-position-price-col">
|
||||
Saison:
|
||||
</td>
|
||||
<td class="st-position-name-col">
|
||||
{{ season }}
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="st-position-price-col">
|
||||
Mindestbelegung:
|
||||
</td>
|
||||
<td class="st-position-name-col">
|
||||
{{ values.minimumStay }} {{ values.minimumStay < 2 ? 'Nacht' : 'Nächte' }}
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
|
||||
<tr>
|
||||
<td class="st-position-price-col">
|
||||
+ {{ values.price|number_format(2) }} €
|
||||
</td>
|
||||
<td class="st-position-name-col">
|
||||
{{ values.numberDays }} {{ values.numberDays < 2 ? 'Nacht' : 'Nächte' }} x {{ values.perNight|number_format(2) }} €
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td colspan="2"><hr style="margin-top: 0; margin-bottom: 0"></td>
|
||||
</tr>
|
||||
|
||||
{% endfor %}
|
||||
<tr>
|
||||
<td class="st-position-price-col">
|
||||
+ {{ fewo_price.flatPrice|number_format(2) }} €
|
||||
+ {{ priceResult.flatPrice|number_format(2) }} €
|
||||
</td>
|
||||
<td class="st-position-name-col">
|
||||
Service-Gebühr
|
||||
|
|
@ -18,7 +56,7 @@
|
|||
</tr>
|
||||
<tr>
|
||||
<td class="st-position-price-col">
|
||||
+ {{ fewo_lodging.deposit|number_format(2) }} €
|
||||
+ {{ priceResult.deposit|number_format(2) }} €
|
||||
</td>
|
||||
<td class="st-position-name-col">
|
||||
Kaution
|
||||
|
|
@ -26,9 +64,15 @@
|
|||
</tr>
|
||||
<tr class="st-total-tr">
|
||||
<td class="st-position-price-col">
|
||||
<span class="st-total-price">= {{ total_price|number_format(2) }} €</span>
|
||||
<span class="st-total-price">= {{ priceResult.total_price|number_format(2) }} €</span>
|
||||
</td>
|
||||
<td class="st-position-name-col">Gesamtpreis der Reise</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
{% else %}
|
||||
|
||||
Leider ist der gewünschter Zeitraum ist nicht buchbar.<br>
|
||||
Bitte ändern Sie das Datum, rote Felder sind bereits gebucht.
|
||||
|
||||
{% endif %}
|
||||
Loading…
Add table
Add a link
Reference in a new issue