{{ 'checkout.products' | trans }} |
|
|
{% for orderItem in order.items %}
{{ orderItem.productName }} |
{{ orderItem.amount }} |
{{ orderItem.totalPrice | currency }} |
{% endfor %}
{% if order.giftItems %}
|
{{ 'general.giftItems' | trans }} |
|
|
{% for orderItem in order.giftItems %}
{{ orderItem.productName }} |
|
|
{% endfor %}
{% endif %}
{% if order.priceModifications %}
|
{{ 'general.priceModifications' | trans }} |
|
|
{% for priceModification in order.priceModifications %}
{{ priceModification.name }} |
|
{{ priceModification.amount | currency }} |
{% endfor %}
{% endif %}
|
{{ 'general.totalPrice' | trans }} |
{{ order.totalPrice | currency }} |
{% else %}