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

{% blocktrans trimmed %} Your registration {% endblocktrans %} {% if order.testmode %} {% trans "TEST MODE" %} {% endif %} {% if backend_user %} {% trans "View in backend" %} {% endif %}

Status
{% include "pretixpresale/event/fragment_order_status.html" with order=order event=request.event %}
{% eventsignal event "pretix.presale.signals.position_info_top" order=order position=position request=request %} {% include "pretixpresale/event/fragment_downloads.html" with position_page=True %}

{% trans "Your items" %} {% if position.can_modify_answers %} {% trans "Change details" %} {% endif %}

{% include "pretixpresale/event/fragment_cart.html" with cart=cart event=request.event download=can_download position_page=True editable=False hide_prices=request.event.settings.hide_prices_from_attendees %}

{% trans "Additional information" %}

{% blocktrans trimmed with email=""|add:order.email|add:""|safe %} This order is managed for you by {{ email }}. Please contact them for any questions regarding payment, cancellation or changes to this order. {% endblocktrans %}

{% eventsignal event "pretix.presale.signals.position_info" order=order position=position request=request %} {% if attendee_change_allowed %}

{% trans "Change your ticket" context "action" %}

{% blocktrans trimmed %} If you want to make changes to the components of your ticket, you can click on the following button. {% endblocktrans %}

{% blocktrans trimmed with email=order.email %} You can only make some changes to this ticket yourself. For additional changes, please get in touch with the person who bought the ticket ({{ email }}). {% endblocktrans %}

{% trans "Change ticket" %}

{% endif %} {% endblock %}