3 <%= render :partial => 'winner' %>
5 <h2>Result Details</h2>
7 <%= render :partial => 'winner_details' %>
9 <h2>Election Rolls for Voter Verification</h2>
11 <p>The voting rolls -- displayed here in alphabetical order -- for the
12 last election are are follows.</p>
14 <p>Information is displayed here to help voters verifying that their own
15 vote was recorded correctly and that the election was not tampered
21 <% for email in @voter_list %>
28 <h3>Votes by Token</h3>
30 <p>The votes, listed in alphabetical order by token.</p>
34 <th rowspan="2">Token (0-9, A-Z)</th>
35 <th colspan="<%= @election.candidates.length %>">Rank of Candidates</th>
39 <% for candidate in @election.candidates.sort.reverse %>
40 <th><%= candidate %></th>
44 <% for vote in @vote_list %>
46 <td><%= vote.token %></td>
47 <% for ranking in vote.rankings %>
48 <td><%= ranking %></td>