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.
This commit is contained in:
Kian Cross
2026-01-16 13:27:14 +00:00
committed by GitHub
parent 9f4cbabd30
commit 9cf66de437

View File

@@ -45,10 +45,19 @@
{% endif %}
<p class="help-block">
<small>
{% 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 %}
</small>
</p>
</div>