{{ order.stringifyStatus|trans }} {{ "Order"|trans ~ " #" ~ order.reference ~ " " ~ ("placed on"|trans) ~ " " ~ order.createdAt|display_date }}
- {{ "Payment method"|trans }}
-
{{ order.paymentGateway.name }}
- {{ "Full name"|trans }}
- {{ order.payment.firstName ~ " " ~ order.payment.lastName }}
- {{ "Email"|trans }}
- {{ order.payment.clientEmail }}
- {{ "Address"|trans }}
- {{ order.payment.stringifyAddress }}
| {{ "Event / Ticket"|trans }} | {{ "Price"|trans }} | {{ "Quantity"|trans }} | {{ "Subtotal"|trans }} | |
|---|---|---|---|---|
{% include "Global/event-preview-horizontal.html.twig" with { eventTicket: orderElement.eventTicket } %}
{% if orderElement.reservedSeats and orderElement.reservedSeats|length > 0 %}
{{ "Reserved seats"|trans }}
|
{{ orderElement.eventTicket.free ? "Free"|trans : orderElement.unitPrice|format_amount }}
|
{{ orderElement.quantity }} |
{{ orderElement.getPrice()|format_amount }}
|
|
| {{ "Buy more tickets"|trans }} {{ "Leave a review"|trans }} {{ "Organizer"|trans }} | ||||
|
{{ "Tickets"|trans }}: {{ order.getOrderElementsPriceSum()|format_amount }} {{ "ticket(s)"|trans }})
|
||||
|
{{ "Fees"|trans }}: {{ order.getTotalFees()|format_amount }}
|
||||
|
{{ "Total"|trans }}: {{ order.getOrderElementsPriceSum(true)|format_amount }}
|
||||
| {% if is_granted('ROLE_ADMINISTRATOR') %} {% if order.status == 0 or order.status == 1 %} {% endif %} {% if order.status == 1 %} {% endif %} {% if order.status == 0 and order.paymentGateway and order.paymentGateway.type == "offline" %} {{ "Validate"|trans }} {% endif %} {% endif %} {% if is_granted('ROLE_ATTENDEE') %} {% endif %} {% if is_granted('ROLE_ORGANIZER') %} {% endif %} {% if order.status == -2 or order.status == 1 %} {% endif %} {% if order.status == 1 %} {{ "Print tickets"|trans }} {% endif %} | ||||