{% extends 'App/_include/_layout.main.html.twig' %} {% block page_content %} {% set current_order = app.session.get('current_order') %}
{{ 'my_account.order.detail.column.offer'|trans }} | {{ 'my_account.order.detail.column.quantity'|trans }} | {{ 'my_account.order.detail.column.price'|trans }} |
---|---|---|
{{ line.offer.name|trans|capitalize }}{% if line.amountUnit != line.amountTotal %} ({{ line.amountUnit }} € HT){% endif %} | {{ line.quantity }}{% if not line.isOption %} ({{ 'license'|transchoice(line.quantity) }}){% endif %} | {{ line.amountTotal|number_format(2, ',','') }} € HT |
{{ 'my_account.order.detail.text2'|trans }} | {{ 'my_account.order.amount_pre_tax'|trans }} | {% if current_order.amountPreTax %}{{ current_order.amountPreTax|number_format(2, ',','') }} €{% endif %} |
{{ 'my_account.order.amount_tax'|trans }} | {% if current_order.amountTax %}{{ current_order.amountTax|number_format(2, ',','') }} €{% endif %} | |
{{ 'my_account.order.amount_with_tax'|trans }} | {% if current_order.amountWithTax %}{{ current_order.amountWithTax|number_format(2, ',','') }} €{% endif %} |