added first stab at a kiosk mode
[selectricity-live] / app / views / election / _winner_details.rhtml
1 <% %>
2 <p>The matrix listing the number of times that any candidate was
3 preferred to any other candidates is listed here:</p>
4
5 <table border="1">
6 <tr>
7 <th></th>
8 <% for candidate in @election.candidates.sort %>
9   <th><%=h candidate.name %></th>
10 <% end %>
11 </tr>
12 <% for cand1 in @election.candidates.sort %>
13   <tr>
14   <th><%=h cand1.name %></th>
15   <% for cand2 in @election.candidates.sort %>
16     <td>
17     <% if cand1 == cand2 %>
18       N/A
19       <% next %>
20     <% else %>
21       <%= @voteobj.votes[cand1.id][cand2.id] %>
22     <% end %>
23     </td>
24   <% end %>
25   </tr>
26 <% end %>
27 </table>
28

Benjamin Mako Hill || Want to submit a patch?