{% extends "pretixcontrol/event/settings_base.html" %} {% load i18n %} {% load bootstrap3 %} {% load static %} {% load hierarkey_form %} {% load formset_tags %} {% block custom_header %} {{ block.super }} {% endblock %} {% block inside %}

{% trans "General settings" %}

{% csrf_token %} {% bootstrap_form_errors form %}
{% trans "Basics" %} {% bootstrap_field form.name layout="control" %} {% bootstrap_field form.slug layout="control" %} {% if form.domain %} {% bootstrap_field form.domain layout="control" %} {% endif %} {% bootstrap_field form.date_from layout="control" %} {% bootstrap_field form.date_to layout="control" %} {% include "pretixcontrol/event/fragment_geodata.html" %} {% bootstrap_field form.date_admission layout="control" %} {% bootstrap_field form.currency layout="control" %} {% bootstrap_field sform.contact_mail layout="control" %} {% bootstrap_field sform.imprint_url layout="control" %} {% bootstrap_field form.is_public layout="control" %} {% bootstrap_field form.sales_channels layout="control" %} {% if meta_forms %} {% endif %}
{% trans "Localization" %} {% bootstrap_field sform.locales layout="control" %} {% bootstrap_field sform.locale layout="control" %} {% bootstrap_field sform.timezone layout="control" %} {% bootstrap_field sform.region layout="control" %}
{% trans "Customer and attendee data" %}

{% trans "Customer data (once per order)" %}

{% bootstrap_field sform.order_email_asked_twice layout="control" %} {% bootstrap_field sform.order_phone_asked_required layout="control" %}

{% trans "Attendee data (once per admission ticket)" %}

{% bootstrap_field sform.attendee_names_asked_required layout="control" %} {% bootstrap_field sform.attendee_emails_asked_required layout="control" %} {% bootstrap_field sform.attendee_company_asked_required layout="control" %} {% bootstrap_field sform.attendee_addresses_asked_required layout="control" %}
{% bootstrap_field sform.attendee_data_explanation_text layout="control" %}

{% trans "Other settings" %}

{% bootstrap_field sform.name_scheme layout="control" %} {% bootstrap_field sform.name_scheme_titles layout="control" %} {% bootstrap_field sform.checkout_show_copy_answers_button layout="control" %}
{% trans "Texts" %} {% bootstrap_field sform.frontpage_text layout="control" %} {% bootstrap_field sform.presale_has_ended_text layout="control" %} {% bootstrap_field sform.voucher_explanation_text layout="control" %}
{% blocktrans trimmed %} These texts need to be confirmed by the user before a purchase is possible. You could for example link your terms of service here. If you use the Pages feature to publish your terms of service, you don't need this setting since you can configure it there. {% endblocktrans %}
{{ confirm_texts_formset.management_form }} {% bootstrap_formset_errors confirm_texts_formset %}
{% for form in confirm_texts_formset %}
{{ form.id }} {% bootstrap_field form.DELETE form_group_class="" layout="inline" %} {% bootstrap_field form.ORDER form_group_class="" layout="inline" %}
{% bootstrap_form_errors form %} {% bootstrap_field form.text layout='inline' form_group_class="" %}
{% endfor %}

{% bootstrap_field sform.checkout_success_text layout="control" %} {% bootstrap_field sform.checkout_email_helptext layout="control" %} {% bootstrap_field sform.checkout_phone_helptext layout="control" %} {% bootstrap_field sform.banner_text layout="control" %} {% bootstrap_field sform.banner_text_bottom layout="control" %} {% bootstrap_field sform.event_info_text layout="control" %}
{% trans "Shop design" %} {% bootstrap_field sform.logo_image layout="control" %} {% bootstrap_field sform.logo_image_large layout="control" %} {% bootstrap_field sform.logo_show_title layout="control" %} {% bootstrap_field sform.og_image layout="control" %} {% url "control:organizer.edit" organizer=request.organizer.slug as org_url %} {% propagated request.event org_url "primary_color" "primary_font" "theme_color_success" "theme_color_danger" %} {% bootstrap_field sform.primary_color layout="control" %} {% bootstrap_field sform.theme_color_success layout="control" %} {% bootstrap_field sform.theme_color_danger layout="control" %} {% bootstrap_field sform.theme_color_background layout="control" %} {% bootstrap_field sform.theme_round_borders layout="control" %} {% bootstrap_field sform.primary_font layout="control" %} {% endpropagated %}
{% trans "Timeline" %} {% bootstrap_field form.presale_start layout="control" %} {% bootstrap_field sform.presale_start_show_date layout="control" %} {% bootstrap_field form.presale_end layout="control" %} {% bootstrap_field sform.show_items_outside_presale_period layout="control" %} {% bootstrap_field sform.last_order_modification_date layout="control" %} {% bootstrap_field sform.allow_modifications_after_checkin layout="control" %}
{% trans "Display" %} {% bootstrap_field sform.show_dates_on_frontpage layout="control" %} {% bootstrap_field sform.show_date_to layout="control" %} {% bootstrap_field sform.show_times layout="control" %} {% bootstrap_field sform.show_quota_left layout="control" %} {% bootstrap_field sform.display_net_prices layout="control" %} {% bootstrap_field sform.show_variations_expanded layout="control" %} {% bootstrap_field sform.hide_sold_out layout="control" %} {% bootstrap_field sform.meta_noindex layout="control" %} {% if sform.frontpage_subevent_ordering %} {% bootstrap_field sform.frontpage_subevent_ordering layout="control" %} {% endif %} {% if sform.event_list_type %} {% bootstrap_field sform.event_list_type layout="control" %} {% endif %} {% if sform.event_list_available_only %} {% bootstrap_field sform.event_list_available_only layout="control" %} {% endif %}
{% trans "Cart" %} {% bootstrap_field sform.reservation_time layout="control" %} {% bootstrap_field sform.max_items_per_order layout="control" %} {% bootstrap_field sform.redirect_to_checkout_directly layout="control" %}
{% trans "Waiting list" %} {% bootstrap_field sform.waiting_list_enabled layout="control" %} {% bootstrap_field sform.waiting_list_auto layout="control" %} {% bootstrap_field sform.waiting_list_hours layout="control" %} {% bootstrap_field sform.waiting_list_names_asked_required layout="control" %} {% bootstrap_field sform.waiting_list_phones_asked_required layout="control" %} {% bootstrap_field sform.waiting_list_phones_explanation_text layout="control" %}
{% trans "Item metadata" %}

{% blocktrans trimmed %} You can here define a set of metadata properties (i.e. variables) that you can later set for your items and re-use in places like ticket layouts. This is an useful timesaver if you create lots and lots of items. {% endblocktrans %}

{{ item_meta_property_formset.management_form }} {% bootstrap_formset_errors item_meta_property_formset %}
{% for form in item_meta_property_formset %}
{{ form.id }} {% bootstrap_field form.DELETE form_group_class="" layout="inline" %}
{% bootstrap_form_errors form %} {% bootstrap_field form.name layout='inline' form_group_class="" %}
{% bootstrap_field form.default layout='inline' form_group_class="" %}
{% endfor %}

{% endblock %}