{% extends "pretixcontrol/events/create_base.html" %} {% load i18n %} {% load bootstrap3 %} {% load static %} {% block form %}
{% trans "General information" %} {% bootstrap_field form.name layout="control" %}
{% bootstrap_field form.slug form_group_class="helper-display-inline" show_label=False layout="inline" %}
{% blocktrans trimmed %} This is the address users can buy your tickets at. Should be short, only contain lowercase letters, numbers, dots, and dashes, and must be unique among your events. We recommend some kind of abbreviation or a date with less than 10 characters that can be easily remembered, but you can also choose to use a random value. {% endblocktrans %}
{% blocktrans trimmed %} We will also use this in some places like order codes, invoice numbers or bank transfer references as an abbreviation to reference this event. {% endblocktrans %}
{% blocktrans trimmed %} We strongly recommend against using short forms of more then 16 characters. {% endblocktrans %}
{% bootstrap_field form.date_from layout="control" %} {% if form.date_to %} {% bootstrap_field form.date_to layout="control" %} {% endif %} {% include "pretixcontrol/event/fragment_geodata.html" %} {% bootstrap_field form.currency layout="control" %} {% bootstrap_field form.no_taxes layout="control" %}
{% bootstrap_field form.tax_rate addon_after="%" layout="control" %}
{% trans "Display settings" %} {% bootstrap_field form.locale layout="control" %} {% bootstrap_field form.timezone layout="control" %}
{% if form.presale_start %}
{% trans "Timeline" %} {% bootstrap_field form.presale_start layout="control" %} {% bootstrap_field form.presale_end layout="control" %}
{% endif %} {% if form.team %}
{% trans "Team" %} {% bootstrap_field form.team layout="control" %}
{% endif %} {% endblock %}