{% extends "pretixcontrol/organizers/base.html" %} {% load i18n %} {% load bootstrap3 %} {% block content %}

{% trans "Delete organizer" %}

{% if request.organizer.allow_delete %} {% bootstrap_form_errors form layout="inline" %}

{% blocktrans trimmed %} This operation will destroy this organizer including all events, configuration, products, quotas, questions, vouchers, lists, etc. {% endblocktrans %}

{% blocktrans trimmed %} This operation is irreversible and there is no way to bring your data back. {% endblocktrans %}

{% csrf_token %}

{% blocktrans trimmed with slug=request.organizer.slug %} To confirm you really want this, please type out the organizer's short name ("{{ slug }}") here: {% endblocktrans %}

{% bootstrap_field form.slug layout="inline" %}
{% else %}

{% trans "This organizer account can not be deleted as it already contains orders, invoices, or devices." %}

{% blocktrans trimmed %} pretix does not allow deleting orders once they have been placed in order to be audit-proof and trustable by financial authorities. {% endblocktrans %}

{% endif %} {% endblock %}