From 836b6d5eae9613b0291edab416fbbade476213b6 Mon Sep 17 00:00:00 2001 From: Daniel Ursache Dogariu Date: Sat, 23 Nov 2024 15:49:44 +0200 Subject: [PATCH] Fix candidates listing title --- .../templates/hub/committee/candidates.html | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/backend/hub/templates/hub/committee/candidates.html b/backend/hub/templates/hub/committee/candidates.html index 278e0158..51fac53b 100644 --- a/backend/hub/templates/hub/committee/candidates.html +++ b/backend/hub/templates/hub/committee/candidates.html @@ -17,9 +17,25 @@

{% if filtering == "pending" %} + {% trans 'Pending candidates' %} ({{ counters.candidates_pending }}) - {% else %} + + {% elif filtering == "confirmed" %} + + {% trans 'Validated candidates' %} ({{ counters.candidates_confirmed }}) + + {% elif filtering == "rejected" %} + + {% trans 'Rejected candidates' %} ({{ counters.candidates_rejected }}) + + {% elif filtering == "accepted" %} + {% trans 'Accepted candidates' %} ({{ counters.candidates_accepted }}) + + {% else %} + +   + {% endif %}