diff --git a/app/views/polls/_poll_group.html.erb b/app/views/polls/_poll_group.html.erb
index 20770014b..d9ffb1d33 100644
--- a/app/views/polls/_poll_group.html.erb
+++ b/app/views/polls/_poll_group.html.erb
@@ -3,18 +3,24 @@
<%= poll_dates(poll) %>
-
<%= link_to poll.name, poll %>
-
+ <% if poll.questions.count == 1 %>
<% poll.questions.each do |question| %>
- - <%= link_to question.title, question_path(question) %>
+ <%= link_to question.title, question_path(question) %>
<% end %>
-
- <% if poll.geozones.any? %>
-
- <%= t("polls.index.geozone_info") %>
-
+ <% else %>
+
<%= link_to poll.name, poll %>
+
+ <% poll.questions.each do |question| %>
+ - <%= link_to question.title, question_path(question) %>
+ <% end %>
+
<% end %>
-