<%= render "callout" %>
<% if @poll.voted_in_booth?(current_user) %>
<%= t("polls.show.already_voted_in_booth") %>
<% else %>
<% if current_user && @poll.voted_in_web?(current_user) && !@poll.expired? %>
<%= t("polls.show.already_voted_in_web") %>
<% end %>
<% end %>
<% @questions.each do |question| %>
<%= render 'polls/questions/question', question: question, token: @token %>
<% end %>
<% if poll_voter_token(@poll, current_user).empty? %>
<%= t('poll_questions.show.voted_token') %>
<% end %>
<%= link_to t("polls.show.participate_in_other_polls"), polls_path, class: "button hollow" %>