{% extends 'App/_include/_layout.main.html.twig' %} {% block page_content %}
{{ 'my_account.order.date_order'|trans }} | {{ 'my_account.order.status'|trans }} | |
---|---|---|
{{ order.date_order|date('d/m/Y') }} | {{ ('order.' ~ order.status|lower)|trans }} |
{{ 'my_account.order.empty'|trans }}
{% endif %}{{ 'my_account.invoice.date'|trans }} | {{ 'my_account.invoice.number'|trans }} | |
---|---|---|
{{ invoice.invoice_date|date('d/m/Y') }} | {{ invoice.invoice_number }} | {% if invoice.invoice_id %} {% endif%} |
{{ 'my_account.order.empty'|trans }}
{% endif %}{{ '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 }} | {{ line.quantity }}{% if not line.is_option %} ({{ 'license'|transchoice(line.quantity) }}){% endif %} | {{ line.amount|number_format(2, ',','') }} € |
{{ 'my_account.order.detail.text2'|trans }} | {{ 'my_account.order.amount_pre_tax'|trans }} | {% if order.amount_pre_tax %}{{ order.amount_pre_tax|number_format(2, ',','') }} €{% endif %} |
{{ 'my_account.order.amount_tax'|trans }} | {% if order.amount_tax %}{{ order.amount_tax|number_format(2, ',','') }} €{% endif %} | |
{{ 'my_account.order.amount_with_tax'|trans }} | {% if order.amount_with_tax %}{{ order.amount_with_tax|number_format(2, ',','') }} €{% endif %} |