5 <%= render_partial 'winner' %>
7 <h2>Result Details</h2>
9 <%= render_partial 'winner_details' %>
11 <h2>Election Rolls for Voter Verification</h2>
13 <p>The voting rolls -- displayed here in alphabetical order -- for the
14 last election are are follows.</p>
16 <p>Information is displayed here to help voters verifying that their own
17 vote was recorded correctly and that the election was not tampered
23 <% for email in @voter_list %>
30 <h3>Votes by Token</h3>
32 <p>The votes, listed in alphabetical order by token.</p>
36 <th rowspan="2">Token (0-9, A-Z)</th>
37 <th colspan="<%= @election.candidates.length %>">Rank of Candidates</th>
41 <% for candidate in @election.candidates.sort.reverse %>
42 <th><%= candidate %></th>
46 <% for vote in @vote_list %>
48 <td><%= vote.token %></td>
49 <% for ranking in vote.rankings %>
50 <td><%= ranking %></td>