X-Git-Url: https://projects.mako.cc/source/selectricity/blobdiff_plain/04f827dd4647f3a7d6e5bd8f5e9083c730a8dccc..5d7239d388387fdae166801c7d26c4103d0d5b0c:/app/views/quickvote/_result.rhtml?ds=inline diff --git a/app/views/quickvote/_result.rhtml b/app/views/quickvote/_result.rhtml index a326459..b643224 100644 --- a/app/views/quickvote/_result.rhtml +++ b/app/views/quickvote/_result.rhtml @@ -1,10 +1,9 @@ <% %> <% if result.winner? and result.winners.length == 1%>
The winner is: - <%= @candidates[result.winner].name %>
+ <%=h @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]}.join(", ") %>
+There was a tie. The winners are: <%=h( result.winners.collect {|w| @candidates[w].to_s.capitalize}.join(", ") )%>
<% else %>There is no winner using this method.
<% end %>