{% extends "pretixcontrol/event/base.html" %} {% load i18n %} {% load bootstrap3 %} {% load formset_tags %} {% block title %}{{ request.event.name }}{% endblock %} {% block content %} {% if request.method == "GET" %}

{% trans "Congratulations!" %}

{% trans "You just created an event!" %}

{% blocktrans trimmed %} You can scroll down and create your first ticket products quickly, or you can use the navigation on the left to modify the settings of your event in much more detail. {% endblocktrans %}

{% endif %}
{% csrf_token %}
{% trans "Create ticket types" %}
{{ formset.management_form }} {% bootstrap_formset_errors formset %}
{% for iform in formset %}
{{ iform.id }} {% bootstrap_field iform.DELETE form_group_class="" layout="inline" %}
{% bootstrap_form_errors iform %} {% bootstrap_field iform.name layout='inline' form_group_class="" %}
{% bootstrap_field iform.default_price addon_after=request.event.currency layout='inline' form_group_class="" %}
{% bootstrap_field iform.quota layout='inline' form_group_class="" %}
{% endfor %}
{% trans "Total capacity:" %} {% bootstrap_field form.total_quota layout="inline" field_class="sr-only" %}

 

{% blocktrans trimmed %} If you want to use more advanced features like non-admission products, product variations, custom quotas, add-on products or want to modify your ticket types in more detail, you can later do so in the "Products" section in the navigation. Don't worry, you can change everything you input here. {% endblocktrans %}

 

{% trans "Features" %}

{% blocktrans trimmed %} We recommend that you take some time to go through the "Settings" part of your event, but if you're in a hurry and want to get started quickly, here's a short version: {% endblocktrans %}

{% bootstrap_field form.ticket_download layout="control" label_class="sr-only" field_class="col-md-12" %} {% bootstrap_field form.waiting_list_enabled layout="control" label_class="sr-only" field_class="col-md-12" %} {% bootstrap_field form.show_quota_left layout="control" label_class="sr-only" field_class="col-md-12" %} {% bootstrap_field form.attendee_names_required layout="control" label_class="sr-only" field_class="col-md-12" %}

 

{% trans "Payment" %}

{% blocktrans trimmed %} pretix supports a wide range of payment providers allowing you to choose the payment methods that fit your workflow best. Here are just two of them as examples, you can add more in the "Settings" part of your event. {% endblocktrans %}

{% bootstrap_field form.payment_banktransfer__enabled layout="control" label_class="sr-only" field_class="col-md-12" %}
{% bootstrap_field form.payment_banktransfer_bank_details_type layout="control" %} {% bootstrap_field form.payment_banktransfer_bank_details_sepa_name layout="control" %} {% bootstrap_field form.payment_banktransfer_bank_details_sepa_iban layout="control" %} {% bootstrap_field form.payment_banktransfer_bank_details_sepa_bic layout="control" %} {% bootstrap_field form.payment_banktransfer_bank_details_sepa_bank layout="control" %} {% bootstrap_field form.payment_banktransfer_bank_details layout="control" %}
{% if form.payment_stripe__enabled %} {% bootstrap_field form.payment_stripe__enabled layout="control" label_class="sr-only" field_class="col-md-12" %}
{% blocktrans trimmed %} After you saved this page, we will redirect you to Stripe to create or connect an account there. Once you completed this, you will be taken back to pretix. {% endblocktrans %}
{% endif %}

 

{% trans "Getting in touch with you" %}

{% blocktrans trimmed %} In case something goes wrong or is unclear, we strongly suggest that you provide ways for your attendees to contact you: {% endblocktrans %}

{% bootstrap_field form.contact_mail layout="control" %} {% bootstrap_field form.imprint_url layout="control" %}
{% endblock %}