git-svn-id: http://78.47.251.156/svn/dev/sterntours-3@3483 f459cee4-fb09-11de-96c3-f9c5f16c3c76
39 lines
1.4 KiB
Twig
39 lines
1.4 KiB
Twig
<table class="st-booking-table">
|
|
<tbody>
|
|
{% for summary_entry in summary %}
|
|
<tr>
|
|
<td class="st-position-price-col" style="min-width: 120px;">
|
|
{% if(summary_entry.value != "!") %}
|
|
{{ summary_entry.value|number_format(2) }} €
|
|
{% endif %}
|
|
</td>
|
|
<td class="st-position-name-col">
|
|
{{ summary_entry.label|raw }}
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
|
|
|
|
<tr class="st-total-tr">
|
|
<td class="st-position-price-col" style="min-width: 120px;">
|
|
<span class="st-total-price">= {{ total_price|number_format(2) }} €</span>
|
|
</td>
|
|
<td class="st-position-name-col">Gesamtpreis der Reise</td>
|
|
</tr>
|
|
|
|
<tr class="">
|
|
<td class="st-position-price-col" style="min-width: 120px;">
|
|
<span class="st-deposit-price">{{ booking_price_info.deposit_total|number_format(2) }} €</span>
|
|
</td>
|
|
<td class="st-position-name-col">Anzahlung (ist sofort fällig)</td>
|
|
</tr>
|
|
<tr class="">
|
|
<td class="st-position-price-col" style="min-width: 120px;">
|
|
<span class="st-final-price">{{ booking_price_info.final_payment|number_format(2) }} €</span>
|
|
</td>
|
|
<td class="st-position-name-col">Restzahlung ({{ booking_price_info.final_payment_date_str}})</td>
|
|
</tr>
|
|
|
|
|
|
</tbody>
|
|
</table>
|