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

{% blocktrans with name=organizer.name %}Organizer settings{% endblocktrans %} {% if request.user.is_staff and staff_session %} {% endif %}

{% csrf_token %} {% bootstrap_form_errors sform %} {% bootstrap_form_errors form %}
{% trans "General" %} {% bootstrap_field form.name layout="control" %} {% bootstrap_field form.slug layout="control" %} {% if form.domain %} {% bootstrap_field form.domain layout="control" %} {% endif %} {% bootstrap_field sform.imprint_url layout="control" %} {% bootstrap_field sform.contact_mail layout="control" %} {% bootstrap_field sform.organizer_info_text layout="control" %} {% bootstrap_field sform.event_team_provisioning layout="control" %}
{% trans "Organizer page" %} {% bootstrap_field sform.organizer_logo_image layout="control" %} {% bootstrap_field sform.organizer_logo_image_large layout="control" %} {% bootstrap_field sform.organizer_homepage_text layout="control" %} {% bootstrap_field sform.event_list_type layout="control" %} {% bootstrap_field sform.event_list_availability layout="control" %} {% bootstrap_field sform.organizer_link_back layout="control" %}
{% trans "Localization" %} {% bootstrap_field sform.locales layout="control" %} {% bootstrap_field sform.region layout="control" %}
{% trans "Shop design" %}

{% blocktrans trimmed %} These settings will be used for the organizer page as well as for the default settings for all events in this account that do not have their own design settings. {% endblocktrans %}

{% 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" %} {% bootstrap_field sform.favicon layout="control" %}
{% trans "Gift cards" %} {% bootstrap_field sform.giftcard_expiry_years layout="control" %} {% bootstrap_field sform.giftcard_length layout="control" %}

{% trans "Change history" %}

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