{% extends "pretixcontrol/base.html" %} {% load i18n %} {% load bootstrap3 %} {% load formset_tags %} {% block title %}{% trans "Organizer" %}{% endblock %} {% block content %}

{% trans "Organizer" %}

{% csrf_token %}
{% trans "General information" %} {% bootstrap_form_errors form %} {% bootstrap_field form.name layout="horizontal" %} {% bootstrap_field form.slug layout="horizontal" %} {% if form.domain %} {% bootstrap_field form.domain layout="horizontal" %} {% endif %}
{% trans "Display settings" %} {% bootstrap_form_errors sform %} {% bootstrap_field sform.locales layout="horizontal" %} {% bootstrap_field sform.organizer_logo_image layout="horizontal" %} {% bootstrap_field sform.organizer_homepage_text layout="horizontal" %} {% bootstrap_field sform.event_list_type layout="horizontal" %}
{% trans "Other" %} {% bootstrap_form_errors sform %} {% bootstrap_field sform.organizer_info_text layout="horizontal" %}
{% trans "Event metadata (advanced)" %}

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

{{ formset.management_form }} {% bootstrap_formset_errors formset %}
{% for form in 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 %}