{% extends "pretixcontrol/event/base.html" %} {% load i18n %} {% load bootstrap3 %} {% block title %}{% trans "Delete seating plan" %}{% endblock %} {% block content %}

{% trans "Delete seating plan" %}: {{ seatingplan.name }} (ID: {{ seatingplan.id }})

{% csrf_token %} {% if inuse %}

{% blocktrans trimmed %} You cannot delete the seating plan because it is used in at least one of your events. {% endblocktrans %}

{% else %}

{% blocktrans trimmed with name=seatingplan.name %} Are you sure you want to delete the seating plan „{{name}}“? {% endblocktrans %}

{% endif %}
{% trans "Cancel" %}
{% endblock %}