{% 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 "Sellout by month" %}
{% trans "Aggregate sellout" %}
{{aggregate_previous_event.0.event_name}}
| {% trans "Period" %} |
{% trans "# tickets" %} |
{% with start_month=aggregate_previous_event.0.month_name|slice:":3" %}
{% for r in aggregate_previous_event|slice:"1:" %}
| {{ start_month }}-{{ r.month_name|slice:":3" }} |
{{r.cumulative_count}} |
{% endfor %}
{% endwith %}
{{aggregate_current_event.0.event_name}}
| {% trans "Period" %} |
{% trans "# tickets" %} |
{% with start_month=aggregate_current_event.0.month_name|slice:":3" %}
{% for r in aggregate_current_event|slice:"1:" %}
| {{ start_month }}-{{ r.month_name|slice:":3" }} |
{{r.cumulative_count}} |
{% endfor %}
{% endwith %}
{%endif%}
{% endblock content %}