% provide :title do %><%= @poll.name %><% end %>
<%= render "poll_header" %>
<%= render "poll_subnav" %>
<%- @poll.questions.each do |question| %>
<% most_voted_answer_id = question.most_voted_answer_id %>
<%= question.title %>
<%- question.question_answers.each do |answer| %>
| >
<% if answer.id == most_voted_answer_id %>
<%= t("polls.show.results.most_voted_answer") %>
<% end %>
<%= answer.title %>
|
<% end %>
<%- question.question_answers.each do |answer| %>
| >
<%= answer.total_votes %>
(<%= answer.total_votes_percentage.round(2) %>%)
|
<% end %>
<% end %>