sterntours/trunk/app/Resources/views/default/components/booking/summary.html.twig
adametz c51f536f1d Ticket #1375 AA / BB / CC
git-svn-id: http://78.47.251.156/svn/dev/sterntours-3@3421 f459cee4-fb09-11de-96c3-f9c5f16c3c76
2018-07-02 13:32:21 +00:00

35 lines
1.2 KiB
Twig

<table class="st-booking-table">
<tbody>
{% for summary_entry in summary %}
<tr>
<td class="st-position-price-col">
{{ summary_entry.value|number_format(2) }}
</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">
<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">
<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">
<span class="st-final-price">{{ booking_price_info.final_payment|number_format(2) }} €</span>
</td>
<td class="st-position-name-col">Restzahlung (bis zum {{ booking_price_info.final_payment_date}})</td>
</tr>
</tbody>
</table>