git-svn-id: http://78.47.251.156/svn/dev/sterntours-3@3362 f459cee4-fb09-11de-96c3-f9c5f16c3c76
34 lines
1.1 KiB
Twig
34 lines
1.1 KiB
Twig
<table class="st-booking-table">
|
|
<tbody>
|
|
<tr>
|
|
<td class="st-position-price-col">
|
|
+ {{ total_price_per_night|number_format(2) }} €
|
|
</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) }} €)
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="st-position-price-col">
|
|
+ {{ fewo_price.flatPrice|number_format(2) }} €
|
|
</td>
|
|
<td class="st-position-name-col">
|
|
Service-Gebühr
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="st-position-price-col">
|
|
+ {{ fewo_lodging.deposit|number_format(2) }} €
|
|
</td>
|
|
<td class="st-position-name-col">
|
|
Kaution
|
|
</td>
|
|
</tr>
|
|
<tr class="st-total-tr">
|
|
<td class="st-position-price-col">
|
|
<span class="st-total-price">= {{ total_price|number_format(2) }} €</span>
|
|
</td>
|
|
<td class="st-position-name-col">Gesamtpreis der Reise</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|