forked from CGM_Public/pretix_original
Co-authored-by: Raphael Michel <michel@rami.io> Co-authored-by: Raphael Michel <mail@raphaelmichel.de>
55 lines
2.3 KiB
HTML
55 lines
2.3 KiB
HTML
{% extends "pretixpresale/event/base.html" %}
|
|
{% load i18n %}
|
|
{% load bootstrap3 %}
|
|
{% load eventsignal %}
|
|
{% load money %}
|
|
{% load eventurl %}
|
|
{% block title %}{% trans "Registration details" %}{% endblock %}
|
|
{% block content %}
|
|
<h2 class="h1">
|
|
{% blocktrans trimmed %}
|
|
Your registration
|
|
{% endblocktrans %}
|
|
{% if order.testmode %}
|
|
<span class="label label-warning">{% trans "TEST MODE" %}</span>
|
|
{% endif %}
|
|
{% if backend_user %}
|
|
<a href="{% url "control:event.order" event=request.event.slug organizer=request.organizer.slug code=order.code %}" class="btn btn-default">
|
|
{% trans "View in backend" %}
|
|
</a>
|
|
{% endif %}
|
|
</h2>
|
|
<dl class="lead order-details">
|
|
<dt class="sr-only">Status</dt>
|
|
<dd class="text-muted">{% include "pretixpresale/event/fragment_order_status.html" with order=order event=request.event %}</dd>
|
|
</dl>
|
|
{% eventsignal event "pretix.presale.signals.position_info_top" order=order position=position request=request %}
|
|
{% include "pretixpresale/event/fragment_downloads.html" with position_page=True %}
|
|
<div class="panel panel-primary cart">
|
|
<div class="panel-heading">
|
|
<h3 class="panel-title">
|
|
{% trans "Your items" %}
|
|
</h3>
|
|
</div>
|
|
<div class="panel-body">
|
|
{% include "pretixpresale/event/fragment_cart.html" with cart=cart event=request.event download=can_download position_page=True editable=False %}
|
|
</div>
|
|
</div>
|
|
<div class="panel panel-primary">
|
|
<div class="panel-heading">
|
|
<h3 class="panel-title">
|
|
{% trans "Additional information" %}
|
|
</h3>
|
|
</div>
|
|
<div class="panel-body">
|
|
<p>
|
|
{% blocktrans trimmed with email="<strong>"|add:order.email|add:"</strong>"|safe %}
|
|
This order is managed for you by {{ email }}. Please contact them for any questions regarding
|
|
payment, cancellation or changes to this order.
|
|
{% endblocktrans %}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
{% eventsignal event "pretix.presale.signals.position_info" order=order position=position request=request %}
|
|
{% endblock %}
|