% %> <% if result.winner? and result.winners.length == 1%>
The winner is: <%= @candidates[result.winner].name.capitalize %>
<% elsif result.winner? and result.winners.length > 1 %>There was a tie. The winners are: <%= result.winners.collect {|w| @candidates[w].to_s.capitalize}.join(", ") %>
<% else %>There is no winner using this method.
<% end %>