<% poll_group.each do |poll| %>
<%= poll_dates(poll) %>

<%= link_to poll.name, poll %>

    <% poll.questions.each do |question| %>
  • <%= link_to question.title, question_path(question) %>
  • <% end %>
    <% poll.geozones.each do |g| %>
  • <%= g.name %>
  • <% end %>
<%= link_to t("polls.index.participate_button"), poll, class: "button" %>
<% end %>