{% extends "pretixpresale/event/base.html" %} {% load i18n %} {% load bootstrap3 %} {% load money %} {% load eventurl %} {% load eventsignal %} {% load getitem %} {% block title %}{% trans "Review order" %}{% endblock %} {% block content %}

{% trans "Review order" %}

{% include "pretixpresale/event/fragment_checkoutflow.html" %}

{% trans "Please review the details below and confirm your order." %}

{% csrf_token %}

{% trans "Your cart" %} {% trans "Add or remove tickets" %}

{% if cart.minutes_left > 0 or cart.seconds_left > 0 %} {{ cart.minutes_left|stringformat:"02d" }}:{{ cart.seconds_left|stringformat:"02d" }} {% else %} {% trans "Cart expired" %} {% endif %}
{% include "pretixpresale/event/fragment_cart.html" with cart=cart event=request.event editable=False %}
{% if payments %}

{% trans "Payment" %} {% if payment_provider.identifier != "free" %} {% trans "Modify" %} {% endif %}

    {% for payment, rendered_block in payments %}
  • {{ payment.provider_name }}

    {{ rendered_block }}

    {{ payment.payment_amount|money:request.event.currency }}

  • {% endfor %}
{% endif %} {% eventsignal event "pretix.presale.signals.checkout_confirm_page_content" request=request %}
{% if invoice_address_asked %}

{% trans "Invoice information" %} {% trans "Modify" %}

{% if addr.company %}
{% trans "Company" %}
{{ addr.company }}
{% endif %}
{% trans "Name" %}
{{ addr.name }}
{% trans "Address" %}
{{ addr.street|linebreaksbr }}
{% trans "ZIP code and city" %}
{{ addr.zipcode }} {{ addr.city }}
{% trans "Country" %}
{{ addr.country.name }}
{% if addr.state %}
{% trans "State" context "address" as state_label %}{{ COUNTRY_STATE_LABEL|getitem:addr.country.code|default:state_label }}
{{ addr.state_name }}
{% endif %} {% if request.event.settings.invoice_address_vatid and addr.vat_id %}
{% trans "VAT ID" %}
{{ addr.vat_id }}
{% endif %} {% if addr.beneficiary %}
{% trans "Beneficiary" %}
{{ addr.beneficiary|linebreaksbr }}
{% endif %} {% if request.event.settings.invoice_address_custom_field and addr.custom_field %}
{{ request.event.settings.invoice_address_custom_field }}
{{ addr.custom_field }}
{% endif %} {% if addr.internal_reference %}
{% trans "Internal reference" %}
{{ addr.internal_reference }}
{% endif %}
{% endif %}

{% trans "Contact information" %} {% trans "Modify" %}

{% if customer %}
{% trans "Customer account" %}
{{ customer.email }}
{{ customer.name }}
#{{ customer.identifier }}
{% endif %} {% if not asked and event.settings.invoice_name_required %}
{% trans "Name" %}
{{ addr.name }}
{% endif %} {% for l, v in contact_info %} {% if v is False %} {# do not show #} {% elif v is True %}
{% else %}
{{ l }}
{{ v }}
{% endif %} {% endfor %}
{% if confirm_messages %}

{% trans "Confirmations" %}

{% for key, desc in confirm_messages.items %}
{% endfor %}
{% endif %} {% if require_approval %}
{% trans "After you submitted your order using the button below, it will require approval by the event organizer before it can be confirmed and forms a valid contract." %} {% blocktrans trimmed %} We will send you an email as soon as the event organizer approved or rejected your order. {% endblocktrans %} {% if cart.total > 0 %} {% blocktrans trimmed %} If your order was approved, we will send you a link that you can use to pay. {% endblocktrans %} {% endif %}
{% endif %}
{% endblock %}