{% extends "pretixpresale/event/checkout_base.html" %} {% load i18n %} {% load money %} {% load bootstrap3 %} {% load eventurl %} {% load rich_text %} {% block inner %}
{% csrf_token %}
{% if customer %}

{% blocktrans trimmed with org=request.organizer.name %} You are currently logged in with the following credentials. {% endblocktrans %}

{% trans "Email" %}
{{ customer.email }}
{% trans "Name" %}
{{ customer.name }}
{% trans "Customer ID" %}
#{{ customer.identifier }}
{% else %}

{% blocktrans trimmed with org=request.organizer.name %} If you created a customer account at {{ org }} before, you can log in now and connect your order to your account. This will allow you to see all your orders in one place and access them at any time. {% endblocktrans %}

{% if request.organizer.settings.customer_accounts_native %} {% bootstrap_form login_form layout="checkout" %} {% endif %}
{% for provider in request.organizer.sso_providers.all %} {% if provider.is_active %} {{ provider.button_label }} {% endif %} {% endfor %}
{% endif %}
{% if signup_allowed %}
{% bootstrap_form register_form layout="checkout" %}

{% blocktrans trimmed with org=request.organizer.name %} We will send you an email with a link to activate your account and set a password, so you can use the account for future orders at {{ org }}. You can still go ahead with this purchase before you received the email. {% endblocktrans %}

{% endif %} {% if guest_allowed %}

{% blocktrans trimmed %} You are not required to create an account. If you proceed as a guest, you will be able to access the details and status of your order any time through the secret link we will send you via email once the order is complete. {% endblocktrans %}

{% endif %}
{% endblock %}