24 lines
756 B
Plaintext
24 lines
756 B
Plaintext
<%= back_link_to admin_question_path(@answer.question) %>
|
|
|
|
<%= link_to t("admin.questions.answers.images.add_image"),
|
|
new_admin_answer_image_path(@answer),
|
|
class: "button hollow float-right" %>
|
|
|
|
<ul class="breadcrumbs margin-top">
|
|
<li><%= @answer.question.title %></li>
|
|
<li><%= @answer.title %></li>
|
|
</ul>
|
|
|
|
<% @answer.images.each do |image| %>
|
|
<div class="small-12 medium-4 column end">
|
|
<%= render_image(image, :large, true) if image.present? %>
|
|
|
|
<%= link_to t("images.remove_image"),
|
|
admin_image_path(image),
|
|
class: "delete float-right",
|
|
method: :delete,
|
|
remote: true,
|
|
data: { confirm: t("admin.actions.confirm") } %>
|
|
</div>
|
|
<% end %>
|