cfb0e5a273c6f5e1a3738f01742b44511eed6adb
[selectricity-live] / app / views / elections / detailed_results.rhtml
1 <% %>
2
3 <p>The voting rolls -- displayed here in alphabetical order -- for the
4 last election are are follows.</p>
5
6 <h2>Voters</h2>
7 <table>
8 <% for email in @voter_list %>
9 <tr>
10 <td><%= email %></td>
11 </tr>
12 <% end %>
13 </table>
14
15 <h2>Votes (by Token)</h2>
16
17 <p>The votes, listed in alphabetical order by token.</p>
18
19 <table border="1">
20 <tr>
21   <th rowspan="2">Token</th>
22   <th colspan="<%= @election.candidates.length %>">Rank of Candidates</th>
23 </tr>
24 <tr>
25 <% for candidate in @election.candidates.sort.reverse %>
26   <th><%= candidate %></th>
27 <% end %>
28 </tr>
29 <% for vote in @vote_list %>
30 <tr>
31 <td><%= vote.token %></td>
32 <% for ranking in vote.rankings %>
33 <td><%= ranking %></td>
34 <% end %>
35 </tr>
36 <% end %>
37 </table>

Benjamin Mako Hill || Want to submit a patch?