diff --git a/wcivf/apps/elections/templates/elections/includes/_single_ballot.html b/wcivf/apps/elections/templates/elections/includes/_single_ballot.html index 297080a20..9780500bd 100644 --- a/wcivf/apps/elections/templates/elections/includes/_single_ballot.html +++ b/wcivf/apps/elections/templates/elections/includes/_single_ballot.html @@ -121,7 +121,46 @@
Electorate | +Turnout | +Ballot Papers Issued | +Spoilt Ballots | +
---|---|---|---|
{% if postelection.election.electorate %} + {{ postelection.election.electorate }} + {% else %} + {% trans "Electorate not available" %} + {% endif %} + | +{% if postelection.election.turnout %} + {{ postelection.election.turnout|stringformat:"d%%" }} + {% else %} + {% trans "Turnout not available" %} + {% endif %} + | +{% if postelection.election.ballot_papers_issued %} + {{ postelection.election.ballot_papers_issued }} + {% else %} + {% trans "Number of ballot papers issued not available" %} + {% endif %} + | +{% if postelection.election.spoilt_ballots %} + {{ postelection.election.spoilt_ballots }} + {% else %} + {% trans "Number of spoilt ballots not available" %} + {% endif %} + | +