Poll results: <%= @poll.title %>

<% winning = winning_option(@poll) winners? = @poll.total_votes > 0 %> <%= for option <- ranked_options(@poll) do %>
<%= option.label %>
<%= percent_of_total(option, @poll) %> <%= option.vote_count %> <%= pluralize("vote", "votes", option.vote_count) %>
<% end %>

<%= if active?(@poll) do %> Poll ends <%= pretty_time(@poll.active_until) %>. <%= if @poll.total_votes > 0 do %> <%= @poll.total_votes %> <%= pluralize("vote", "votes", @poll.total_votes) %> <% else %> No votes have been <% end %> cast so far. <% else %> Poll ended <%= pretty_time(@poll.active_until) %> with <%= @poll.total_votes %> <%= pluralize("vote", "votes", @poll.total_votes) %>. <% end %>