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

{{ request.event.name }} {% if request.event.has_subevents %} {% trans "Event series" %} {% else %} {{ request.event.get_date_range_display }} {% endif %}

{% if has_overpaid_orders %}
{% blocktrans trimmed %} This event contains overpaid orders, for example due to duplicate payment attempts. You should review the cases and consider refunding the overpaid amount to the user. {% endblocktrans %} {% trans "Show overpaid orders" %}
{% endif %} {% if has_pending_refunds %}
{% blocktrans trimmed %} This event contains pending refunds that you should take care of. {% endblocktrans %} {% trans "Show pending refunds" %}
{% endif %} {% if has_cancellation_requests %}
{% blocktrans trimmed %} This event contains requested cancellations that you should take care of. {% endblocktrans %} {% trans "Show orders requesting cancellation" %}
{% endif %} {% if has_pending_approvals %}
{% blocktrans trimmed %} This event contains pending approvals that you should take care of. {% endblocktrans %} {% trans "Show orders pending approval" %}
{% endif %} {% if has_pending_orders_with_full_payment %}
{% blocktrans trimmed %} This event contains fully paid orders that are not marked as paid, probably because no quota was left at the time their payment arrived. You should review the cases and consider either refunding the customer or creating more space. {% endblocktrans %} {% trans "Show affected orders" %}
{% endif %} {% eventsignal request.event "pretix.control.signals.event_dashboard_top" request=request %} {% if request.event.has_subevents %}
{% include "pretixcontrol/event/fragment_subevent_choice_simple.html" %}
{% endif %} {% if not request.event.has_subevents or subevent %} {% include "pretixcontrol/event/fragment_timeline.html" %} {% endif %}
{% for w in widgets %}
{% if w.url %}{# backwards compatibility #} {% if w.lazy %} {% else %} {{ w.content|safe }} {% endif %} {% elif w.link %} {% if w.lazy %} {% else %} {{ w.content|safe }} {% endif %} {% else %}
{% if w.lazy %} {% else %} {{ w.content|safe }} {% endif %}
{% 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" %}
{% if not comment_form.readonly %}


{% endif %}

{% trans "Event logs" %}

{% endblock %}