Guest User

Untitled

a guest
Jul 20th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  1. <% for listing in @listings %>
  2. <% first_shown=false%>
  3. <tr>
  4. <td>
  5. <% @slideshows.each do |slideshow| %>
  6. <% if slideshow.listing.id == listing.id %>
  7. <% if first_shown=false %>
  8. <%= link_to image_tag(listing.listing_thumbnail_image.url), slideshow.data.url, :class => "gallery#{listing.id}", :rel => "gallery#{listing.id}" %>
  9. <% first_shown=true %>
  10. <% end %>
  11. <%= link_to '', slideshow.data.url, :class => "gallery#{listing.id}", :rel => "gallery#{listing.id}" %>
  12. <% end %>
  13. <% end %>
  14. </td>
  15. </tr>
  16. <tr>
  17. <td><%= link_to image_tag("Properties/PDF-Button.png"), listing.listing_flier_pdf.url %></td>
  18. </tr>
  19. <% if can? :create, Listing %>
  20. <tr>
  21. <td>
  22. <%= link_to "Show", [@property, listing] %>
  23. <%= link_to "Edit", edit_property_listing_path(@property, listing) %>
  24. <%= link_to "Destroy", [@property, listing], :confirm => 'Are you sure?', :method => :delete %>
  25. </td>
  26. </tr>
  27. <% end %>
  28. <% end %>
Add Comment
Please, Sign In to add comment