<% provide :title do %><%= @poll.name %> <% end %>
<%= render "poll_header" %> <%= render "poll_subnav" %>
<%- @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" || question.enum_type == "prioritized" %> (<%= answer.total_votes_percentage.round(2) %>%) <% end %>
<% end %>