46685703f77c577389fb6665487bc63aae4f7927
[selectricity-live] / app / views / election / detailed_results.rhtml
1 <% %>
2
3 <h2>Result</h2>
4
5 <%= render_partial 'winner' %>
6
7 <h2>Result Details</h2>
8
9 <%= render_partial 'winner_details' %>
10
11 <h2>Election Rolls for Voter Verification</h2>
12
13 <p>The voting rolls -- displayed here in alphabetical order -- for the
14 last election are are follows.</p>
15
16 <p>Information is displayed here to help voters verify that their own
17 vote was recorded correctly and that the election was not tampered
18 with.</p>
19
20 <h3>Voters</h3>
21 <table border="1">
22 <th>Voters (A-Z)</th>
23 <% for email in @voter_list %>
24 <tr>
25 <td><%= email %></td>
26 </tr>
27 <% end %>
28 </table>
29
30 <h3>Votes by Token</h3>
31
32 <p>The votes, listed in alphabetical order by token.</p>
33
34 <table border="1">
35 <tr>
36   <th rowspan="2">Token (0-9, A-Z)</th>
37   <th colspan="<%= @election.candidates.length %>">Rank of Candidates</th>
38 </tr>
39 <tr>
40
41 <% for candidate in @election.candidates.sort.reverse %>
42   <th><%= candidate %></th>
43 <% end %>
44
45 </tr>
46 <% for vote in @vote_list %>
47   <tr>
48   <td><%= vote.token %></td>
49   <% for ranking in vote.rankings %>
50     <td><%= ranking %></td>
51   <% end %>
52   </tr>
53 <% end %>
54 </table>

Benjamin Mako Hill || Want to submit a patch?