{% extends "pretixcontrol/event/base.html" %} {% load i18n %} {% load bootstrap3 %} {% load formset_tags %} {% load eventsignal %} {% load static %} {% block title %}{% trans "Date" context "subevent" %}{% endblock %} {% block content %} {% if not subevent.pk %}

{% trans "Create date" context "subevent" %}

{% else %}

{% trans "Date" context "subevent" %}

{% endif %}
{% csrf_token %} {% bootstrap_form_errors form %} {% for f in itemvar_forms %} {% bootstrap_form_errors f %} {% endfor %}
{% trans "General information" %} {% bootstrap_field form.name layout="control" %} {% bootstrap_field form.active layout="control" %} {% 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.frontpage_text layout="control" %} {% bootstrap_field form.is_public layout="control" %} {% bootstrap_field form.comment layout="control" %} {% if meta_forms %} {% endif %}
{% trans "Timeline" %} {% bootstrap_field form.presale_start layout="control" %} {% bootstrap_field form.presale_end layout="control" %}
{% trans "Quotas" %}
{{ formset.management_form }} {% bootstrap_formset_errors formset %}
{% for form in formset %}
{{ form.id }} {% bootstrap_field form.DELETE form_group_class="" layout="inline" %}

{% bootstrap_field form.name layout='inline' form_group_class="" %}

{% bootstrap_form_errors form %} {% bootstrap_field form.size layout="control" %} {% bootstrap_field form.itemvars layout="control" %} {% bootstrap_field form.release_after_exit layout="control" %} {% bootstrap_field form.ignore_for_event_availability layout="control" %}
{% endfor %}

{% trans "Product settings" %}

{% trans "These settings are optional, if you leave them empty, the default values from the product settings will be used." %}

{% for f in itemvar_forms %} {% bootstrap_form_errors f %}

{% bootstrap_field f.price addon_after=request.event.currency form_group_class="" layout="inline" %}

{% bootstrap_field f.disabled layout="inline" form_group_class="" %}
{% include "pretixcontrol/subevents/fragment_unavail_mode_indicator.html" with mode=f.available_from_mode %}
{% bootstrap_field f.available_from form_group_class="foo" layout="inline" %}
{% include "pretixcontrol/subevents/fragment_unavail_mode_indicator.html" with mode=f.available_until_mode %}
{% bootstrap_field f.available_until form_group_class="" layout="inline" %}
{% endfor %}
{% trans "Check-in lists" %}

{% blocktrans trimmed %} You can choose to either add one or more check-in lists for every date in your series individually, or use just one check-in list for all your dates and limit admission through check-in rules. Which approach is better depends on multiple factors, such as the number of dates in your series. For a series with one or less event date per day, individual lists are usually more helpful. If you use dates to represent many time slots on the same day, or even overlapping time slots, working with just one large check-in list will be easier. {% endblocktrans %}

{{ cl_formset.management_form }} {% bootstrap_formset_errors cl_formset %}
{% for form in cl_formset %}
{{ form.id }} {% bootstrap_field form.DELETE form_group_class="" layout="inline" %}

{% bootstrap_field form.name layout='inline' form_group_class="" %}

{% bootstrap_form_errors form %} {% bootstrap_field form.include_pending layout="control" %} {% bootstrap_field form.all_products layout="control" %} {% bootstrap_field form.limit_products layout="control" %} {% bootstrap_field form.allow_entry_after_exit layout="control" %} {% if form.gates %} {% bootstrap_field form.gates layout="control" %} {% endif %}
{% endfor %}

{% for f in plugin_forms %} {% if f.title %}
{{ f.title }} {% if f.template %} {% include f.template with form=f %} {% else %} {% bootstrap_form f layout="control" %} {% endif %}
{% endif %} {% endfor %}
{% trans "Additional settings" %} {% for f in plugin_forms %} {% if not f.title %} {% if f.template %} {% include f.template with form=f %} {% else %} {% bootstrap_form f layout="control" %} {% endif %} {% endif %} {% endfor %}
{% if subevent.pk %}

{% trans "Date history" context "subevent" %}

{% include "pretixcontrol/includes/logs.html" with obj=subevent %}
{% endif %}
{% endblock %}