Skip to content

Commit

Permalink
Fix candidates listing title
Browse files Browse the repository at this point in the history
  • Loading branch information
danniel committed Nov 23, 2024
1 parent 1961c87 commit 836b6d5
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion backend/hub/templates/hub/committee/candidates.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,25 @@
<div class="container">
<h2 class="title border-b uppercase">
{% 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 %}

&nbsp;

{% endif %}
</h2>

Expand Down

0 comments on commit 836b6d5

Please sign in to comment.