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

{% trans "Seating Plans" %} {% trans "Manual Seats" %} 💺

{% if seatingplans|length == 0 %}

{% blocktrans trimmed %} You haven't added any seating plan yet. {% endblocktrans %}

{% trans "Add seating plan" %}
{% else %}

{% trans "Add a new seating plan" %}

{% for sp in seatingplans %} {% endfor %}
{% trans "Name" %}
{{ sp.name }} {% if sp.eventcount|add:sp.subeventcount >= 1 %} {% trans "Used" %} {% else %} {% trans "Not used" %} {% endif %}
{% include "pretixcontrol/pagination.html" %} {% endif %} {% endblock %}