{% 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" %} {% 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_field f.price addon_after=request.event.currency form_group_class="" layout="inline" %}

{% bootstrap_field f.disabled layout="inline" form_group_class="" %}

{% bootstrap_field f.available_from form_group_class="" layout="inline" %}

{% bootstrap_field f.available_until form_group_class="" layout="inline" %}
{% endfor %}
{% trans "Check-in lists" %}
{{ 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 %}

{% trans "Additional settings" %} {% for f in plugin_forms %} {% bootstrap_form f layout="control" %} {% endfor %}
{% if subevent.pk %}

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

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