From 469a75f218db3acc707df5ae340ba470863e10ac Mon Sep 17 00:00:00 2001 From: Changaco Date: Sun, 15 Dec 2024 15:40:13 +0100 Subject: [PATCH] =?UTF-8?q?improve=20the=20section=20titles=20in=20the=20?= =?UTF-8?q?=E2=80=9CReceiving=E2=80=9D=20page?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit closes #1338 --- www/%username/receiving/index.html.spt | 40 +++++++++++++------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/www/%username/receiving/index.html.spt b/www/%username/receiving/index.html.spt index 9da458ae0..2b3fc9981 100644 --- a/www/%username/receiving/index.html.spt +++ b/www/%username/receiving/index.html.spt @@ -64,6 +64,23 @@ recent_donation_changes = website.db.all(""" ) }}

% endif +

{{ _("Income history") }}

+ +
+
+ +

{{ _("Income per week (in {currency})", currency=Currency(participant.main_currency)) }}

+
+
+
+
+ +

{{ _("Number of patrons per week") }}

+
+
+
+
+ % if participant.is_person % if not participant.payment_providers @@ -109,7 +126,7 @@ recent_donation_changes = website.db.all(""" % endif % if recent_donation_changes or participant.receiving > participant.taking -

{{ _("Details of Donations") }}

+

{{ _("Details of personal donations") }}

% if participant.taking

{{ icon('info-sign') }} {{ _( "This section doesn't include data on donations through teams, it only " @@ -123,7 +140,7 @@ recent_donation_changes = website.db.all(""" {{ description }}
% endmacro -

{{ _("Recent Changes") }}

+

{{ _("Recent changes to personal donations") }}

% for change in recent_donation_changes % if change.old_amount is none {{ show_change(change, '+', 'info', _( @@ -161,7 +178,7 @@ recent_donation_changes = website.db.all(""" % set tip_distribution = participant.get_tip_distribution()[0] % if tip_distribution -

{{ _("Stats") }}

+

{{ _("Statistics on personal donations") }}

{{ _("The table below lists the donations you receive, grouped by amount.") }}

@@ -199,21 +216,4 @@ recent_donation_changes = website.db.all(""" % endif % endif -

{{ _("History") }}

- -
-
- -

{{ _("Income Per Week (in {currency})", currency=Currency(participant.main_currency)) }}

-
-
-
-
- -

{{ _("Number of Patrons Per Week") }}

-
-
-
-
- % endblock