{% extends "orga/base.html" %} {% load i18n %} {% block content %}

{% if request.event.is_public %}{% trans "Deactivate event" %}{% else %}{% trans "Go live" %}{% endif %}

{% if request.event.is_public %} {% blocktrans trimmed %} Your event is currently live and publicly visible. If you take it down, it will only be visible to you and your team. {% endblocktrans %} {% else %} {% blocktrans trimmed %} Your event is currently only visible to your and your team. By going live, it will be publicly visible. {% endblocktrans %} {% if warnings %}

{% trans "Your event may not be ready for release yet!" %}

{% endif %} {% if suggestions %}

{% trans "There may be easy ways to improve your event before its release!" %}

{% endif %} {% endif %}

{% csrf_token %} {% if request.event.is_public %} {% else %} {% endif %}
{% endblock %}