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

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