Advertisement
Guest User

Untitled

a guest
Nov 24th, 2014
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. <div id="preview_images">
  2. <% @item.uploads.each do | upload | %>
  3. <div class="previews">
  4. <h1><%= upload.item_file_name %></h1>
  5. <% if upload.is_image? %>
  6. <%= image_tag upload.item(:small) %>
  7. <% else %>
  8. <%= image_tag 'pictos/unknown.png' %>
  9. <% end %>
  10. </div>
  11. <% end %>
  12. </div>
  13.  
  14. <% @gallery.pictures do |picture| %>
  15. <p> <%= picture.image_file_name %></p>
  16. <%= image_tag picture.image_url(:thumb)
  17. <% end %>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement