diff --git a/app/views/polls/show.html.erb b/app/views/polls/show.html.erb index b632fac55..914c39d85 100644 --- a/app/views/polls/show.html.erb +++ b/app/views/polls/show.html.erb @@ -60,25 +60,28 @@
-
+
<% @poll.questions.map(&:question_answers).flatten.each do |answer| %>
+ data-toggler=".medium-6" data-equalizer-watch> -

<%= answer.title %>

+ <% if answer.description.present? %> +

<%= answer.title %>

+ <% end %> <% if answer.images.any? %> <%= render "gallery", answer: answer %> <% end %> -
- <%= safe_html_with_links simple_format(answer.description) %> -
+ <% if answer.description.present? %> +
+ <%= safe_html_with_links simple_format(answer.description) %> +
+ <% end %>
<% end %>
-