1 <p>The voting rolls for the last election are are follows.</p>
5 <% for voter in @voting_rolls.randomize %>
7 <td><%= voter.email %></td>
12 <h2>Votes (by Token)</h2>
15 <th rowspan="2">Token</th>
16 <th colspan="<%= @election.candidates.length %>">Rank of Candidates</th>
19 <% for candidate in @election.candidates.sort %>
20 <th><%= candidate %></th>
23 <% for voter in @voting_rolls.randomize %>
25 <td><%= voter.vote.token %></td>
26 <% for ranking in voter.vote %>
27 <td><%= ranking %></td>