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

{% trans "Shop status" %}

{% if request.event.live %}

{% trans "Your shop is currently live. If you take it down, it will only be visible to you and your team." %}

{% csrf_token %}
{% else %}

{% trans "Your ticket shop is currently not live. It is thus only visible to you and your team, not to any visitors." %}

{% if issues|length > 0 %}

{% trans "To publish your ticket shop, you first need to resolve the following issues:" %}

{% else %}

{% trans "If you want to, you can publish your ticket shop now." %}

{% csrf_token %}
{% endif %} {% endif %} {% endblock %}