{% extends "pretixcontrol/event/base.html" %} {% load i18n %} {% load compress %} {% load static %} {% load escapejson %} {% load money %} {% load getitem %} {% block title %}{% trans "Advanced Statistics" %}{% endblock %} {% block custom_header %} {% endblock %} {% block content %}

{% trans "Advanced Statistics" %}

{% if has_orders %}

{% trans "Filter" %}

{% trans "Sellout by month" %}

{% trans "Aggregate sellout" %}

{{aggregate_previous_event.0.event_name}}

{% with start_month=aggregate_previous_event.0.month_name|slice:":3" %} {% for r in aggregate_previous_event|slice:"1:" %} {% endfor %} {% endwith %}
{% trans "Period" %} {% trans "# tickets" %}
{{ start_month }}-{{ r.month_name|slice:":3" }} {{r.cumulative_count}}

{{aggregate_current_event.0.event_name}}

{% with start_month=aggregate_current_event.0.month_name|slice:":3" %} {% for r in aggregate_current_event|slice:"1:" %} {% endfor %} {% endwith %}
{% trans "Period" %} {% trans "# tickets" %}
{{ start_month }}-{{ r.month_name|slice:":3" }} {{r.cumulative_count}}
{%endif%} {% endblock content %}