<% if answer.description.present? %>
<%= wysiwyg(answer.description) %>
<% end %>
<% if answer.images.any? %>
<%= render "polls/gallery", answer: answer %>
<% end %>
<% if answer.documents.present? %>
<%= t("polls.show.documents") %>
<% answer.documents.each do |document| %>
<%= render Documents::DocumentComponent.new(document) %>
<% end %>
<% end %>
<% if answer.videos.present? %>
<%= t("polls.show.videos") %>
<% answer.videos.each do |video| %>
<%= link_to video.title,
video.url,
rel: "nofollow" %>
<% end %>
<% end %>