From 9cf66de437a4d4b65ba5565580b6bd4d13e62c12 Mon Sep 17 00:00:00 2001 From: Kian Cross Date: Fri, 16 Jan 2026 13:27:14 +0000 Subject: [PATCH] Clarify fee inclusion in revenue-over-time graph help text (#5785) Updates the help text for the revenue-over-time graph to clarify how fees are treated. When viewing a subevent, revenue excludes all fees (including cancellation fees). When viewing the full event, revenue includes all fees, including cancellation fees from cancelled orders. --- .../pretixplugins/statistics/index.html | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/src/pretix/plugins/statistics/templates/pretixplugins/statistics/index.html b/src/pretix/plugins/statistics/templates/pretixplugins/statistics/index.html index c6d1cac32b..6b9c2d226f 100644 --- a/src/pretix/plugins/statistics/templates/pretixplugins/statistics/index.html +++ b/src/pretix/plugins/statistics/templates/pretixplugins/statistics/index.html @@ -45,10 +45,19 @@ {% endif %}

- {% blocktrans trimmed %} - Only fully paid orders are counted. - Orders paid in multiple payments are shown with the date of their last payment. - {% endblocktrans %} + {% if request.GET.subevent %} + {% blocktrans trimmed %} + Only fully paid orders are counted. + Orders paid in multiple payments are shown with the date of their last payment. + Revenue excludes all fees, including cancellation fees. + {% endblocktrans %} + {% else %} + {% blocktrans trimmed %} + Only fully paid orders are counted. + Orders paid in multiple payments are shown with the date of their last payment. + Revenue includes all fees, including cancellation fees from cancelled orders. + {% endblocktrans %} + {% endif %}