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

{% trans "Statistics" %}

{% if request.event.has_subevents %}
{% include "pretixcontrol/event/fragment_subevent_choice_simple.html" %}
{% endif %} {% if has_orders %}

{% trans "Orders by day" %}

{% blocktrans trimmed %} Orders paid in multiple payments are shown with the date of their last payment. {% endblocktrans %}

{% trans "Revenue over time" %}

{% if request.GET.subevent %}
{% blocktrans trimmed context "subevent" %} If you select a single date, payment method fees will not be listed here as it might not be clear which date they belong to. {% endblocktrans %}
{% endif %}

{% blocktrans trimmed %} Only fully paid orders are counted. Orders paid in multiple payments are shown with the date of their last payment. {% endblocktrans %}

{% trans "Orders by product" %}

{% if seats %}

{% trans "Seating Overview" %}

{{ seats.purchased_seats }} {% trans "Sold Seats" %}
{{ seats.blocked_seats }} {% trans "Blocked Seats" %}
{{ seats.free_seats }} {% trans "Free Seats" %}

{% trans "Seating Sales Potentials" %}

{% for item, props in seats.products.items %} {% if item is not None %} {% endif %} {% endfor %} {% if None in seats.products %} {% with seats.products|getitem:None as unattributed %} {% endwith %} {% endif %}
{% trans "Product" %} {% trans "Unsold Seats" %} {% trans "Potential Profits" %}
{% trans "Minimum Price" %} {% trans "Blocked" %} {% trans "Available" %} {% trans "Blocked" %} {% trans "Available" %}
{% trans "On Sale" %}
{{ item }} {{ props.price|money:request.event.currency }} {{ props.blocked.seats }} {{ props.free.seats }} {{ props.blocked.potential|money:request.event.currency }} {{ props.free.potential|money:request.event.currency }}
{% trans "Not on Sale" %}
{% trans "Seats not attributed to any specific product" %} {{ unattributed.blocked.seats }} {{ unattributed.free.seats }}
{% endif %} {% else %}

{% blocktrans trimmed %} We will show you a variety of statistics about your sales right here, as soon as the first orders are submitted! {% endblocktrans %}

{% endif %} {% endblock %}