Browse Source

Only show electorate/turnout data if we have it

tags/last-sinatra-version
Adrian Short 9 years ago
parent
commit
5b1f35039e
1 changed files with 12 additions and 9 deletions
  1. +12
    -9
      views/resultsdistrict.haml

+ 12
- 9
views/resultsdistrict.haml View File

@@ -144,15 +144,18 @@
- if @poll
%p
%table
%tr
%td Ballot papers issued
%td.right= commify(@poll.ballot_papers_issued)
%tr
%td Electorate
%td.right= commify(@poll.electorate)
%tr
%td Turnout
%td.right= sprintf("%.0f%%", @poll.turnout_percent)
- if @poll.ballot_papers_issued
%tr
%td Ballot papers issued
%td.right= commify(@poll.ballot_papers_issued)
- if @poll.electorate
%tr
%td Electorate
%td.right= commify(@poll.electorate)
- if @poll.turnout_percent > 0
%tr
%td Turnout
%td.right= sprintf("%.0f%%", @poll.turnout_percent)

-# Show this table conditionally as sometimes we have electorate data but no
-# breakdown of rejected ballot papers


Loading…
Cancel
Save