<%= t("admin.polls.show.questions_title") %>

<% if @poll.questions.empty? %>
<%= t('admin.polls.show.no_questions') %>
<% else %> <% @poll.questions.each do |question| %> <% end %>
<%= link_to question.title, admin_question_path(question) %> <%= link_to t('admin.polls.show.remove_question'), admin_question_path(question), class: "button hollow alert", method: :delete %>
<% end %>