{% extends "pretixcontrol/event/base.html" %} {% load i18n %} {% load eventurl %} {% load bootstrap3 %} {% load staticfiles %} {% block title %}{{ request.event.name }}{% endblock %} {% block content %}

{{ request.event.name }}

{% if actions|length > 0 %}

{% trans "Your attention is required to resolve the following issues" %}

{% endif %} {% if request.event.has_subevents %}
{% include "pretixcontrol/event/fragment_subevent_choice_simple.html" %}
{% endif %}
{% for w in widgets %}
{% if w.url %}{# backwards compatibility #} {{ w.content|safe }} {% elif w.link %} {{ w.content|safe }} {% else %}
{{ w.content|safe }}
{% endif %}
{% endfor %}

 

{% trans "Internal comment" %}

{% csrf_token %}
{% bootstrap_field comment_form.comment layout="horizontal" show_help=True show_label=False horizontal_field_class="col-md-12" %}


{% trans "Event logs" %}

{% endblock %}