2012-01-31 10:31:31 +00:00
|
|
|
<%= fields_for "ad_banner[existing_ad_images][#{ad_image.id}]", ad_image do |f| %>
|
2012-02-04 02:32:24 +00:00
|
|
|
<%= image_tag ad_image.file %>
|
|
|
|
<div>
|
|
|
|
Destroy?<%= f.check_box :to_destroy %>
|
|
|
|
<%= render :partial => "ad_image_form", :locals => { :f => f } %>
|
|
|
|
</div>
|
2012-01-31 10:31:31 +00:00
|
|
|
<% end %>
|
|
|
|
|
|
|
|
|