<%= t("polls.show.results.title") %>

<%- @poll.questions.each do |question| %>

<%= question.title %>

<%- question.question_answers.visibles.each do |answer| %> > <% end %>
<% if answer.most_voted %> <%= t("polls.show.results.most_voted_answer") %> <% end %> <%= answer.title %> > <%= answer.total_votes %> <% unless question.enum_type == "positive_negative_open" %> (<%= answer.total_votes_percentage.round(2) %>%) <% end %>
<% end %>