<% if answer.photos.any? %>
<% answer.photos.each do |photo| %>
<%= image_tag photo.thumbnail_url, alt: strip_tags(translated_attribute(photo.title)) %>
<% end %>
<% end %>
<% if answer.description %>
<%== translated_attribute(answer.description) %>
<% end %>
<% if answer.proposals.any? %>
<%= t("decidim.elections.votes.modal.proposal_header") %>
<% answer.proposals.each do |proposal| %>
-
<%= link_to resource_locator(proposal).path do %>
<%== decidim_html_escape(present(proposal).title) %>
<% end %>
<% end %>
<% end %>