{% extends "pretixcontrol/event/base.html" %} {% load i18n %} {% load bootstrap3 %} {% load static %} {% block title %}{% trans "Seating Plan" %}{% endblock %} {% block content %}

{% if seatingplan %} {% trans "Seating Plan" %}: {{ seatingplan.name }} (ID: {{ seatingplan.id }}) {% else %} {% trans "Add a new seating plan" %} {% endif %}

{% csrf_token %} {% bootstrap_form_errors form type='non_fields' %}
{% bootstrap_field form.name layout="horizontal" %}

{% blocktrans trimmed %} Pretix requires your seating plan to be in a particular format that enables it to comprehend not just the visual representation of the plan, but also its structure and numbering details. {% endblocktrans %}

{% blocktrans trimmed %} At seats.pretix.eu, you can access a graphical seating plan editor, which allows you to create and edit seating plans in the specified format. Once you're done, you can save the plan to your computer and upload it here to associate it with your events. {% endblocktrans %}

{% trans "Go to editor" %}

{% bootstrap_field form.layout layout="horizontal" %}
{% trans "Cancel" %}
{% endblock %}