3 <p>The voting rolls -- displayed here in alphabetical order -- for the
4 last election are are follows.</p>
8 <% for email in @voter_list %>
15 <h2>Votes (by Token)</h2>
17 <p>The votes, listed in alphabetical order by token.</p>
21 <th rowspan="2">Token</th>
22 <th colspan="<%= @election.candidates.length %>">Rank of Candidates</th>
25 <% for candidate in @election.candidates.sort.reverse %>
26 <th><%= candidate %></th>
29 <% for vote in @vote_list %>
31 <td><%= vote.token %></td>
32 <% for ranking in vote.rankings %>
33 <td><%= ranking %></td>