{% extends "pretixpresale/event/base.html" %} {% load i18n %} {% load bootstrap3 %} {% load money %} {% load eventurl %} {% load eventsignal %} {% 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" %} {% 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 %} {% trans "Add or remove tickets" %} {% include "pretixpresale/event/fragment_cart.html" with cart=cart event=request.event editable=False %} {% if payments %} {% if payment_provider.identifier != "free" %} {% trans "Modify" %} {% endif %} {% trans "Payment" %} {% for payment, rendered_block in payments %} {% if payments|length > 1 %} {{ payment.provider_name }} {{ rendered_block }} {{ payment.payment_amount|money:request.event.currency }} {% else %} {{ rendered_block }} {% endif %} {% endfor %} {% endif %} {% eventsignal event "pretix.presale.signals.checkout_confirm_page_content" request=request %} {% if invoice_address_asked %} {% trans "Modify" %} {% trans "Invoice information" %} {% 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" %} {{ addr.state_name }} {% endif %} {% if request.event.settings.invoice_address_vatid %} {% 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 %} {% trans "Internal reference" %} {{ addr.internal_reference }} {% endif %} {% trans "Modify" %} {% trans "Contact information" %} {% 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 %} {{ l }} {% else %} {{ l }} {{ v }} {% endif %} {% endfor %} {% if confirm_messages %} {% trans "Confirmations" %} {% for key, desc in confirm_messages.items %} {{ desc|safe }} {% endfor %} {% endif %} {% if require_approval %} {% trans "Your order requires approval by the event organizer before it can be confirmed and forms a valid contract." %} {% blocktrans trimmed %} We will sent 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 %} {% trans "Go back" %} {% if cart.total > 0 %} {% trans "Place binding order" %} {% else %} {% trans "Submit registration" %} {% endif %} {% endblock %}
{% trans "Please review the details below and confirm your order." %}