531e0d2bf9d23161d6a299fbf91183493282a6db
[selectricity] / app / views / election / _winner.rhtml
1 <% %>
2
3 <% if @winners.length > 1 %>
4   <p>There were multiple winners for the election. The winners (tied)
5   were:
6
7   <ul>
8   <% for candidate in @winners %>
9     <li><%= @candidates_by_id[candidate].name %></li>
10   <% end %>
11   </ul>
12
13 <% else %>
14
15   <% winner = @winners[0] %>
16   <p>The winner of the election was:
17      <strong><%= @candidates_by_id[winner].name %></strong>
18   </p>
19
20 <% end %>
21

Benjamin Mako Hill || Want to submit a patch?