Guest User

Untitled

a guest
May 24th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. ## image model
  2.  
  3. named_scope :first_three, :limit => 3, :order => created_at ASC
  4.  
  5.  
  6. ## view
  7.  
  8. <% @galleries.each do |gallery| %>
  9. <% gallery.images.first_three .each do |image| %>
  10. <%= link_to image_tag(url_for(:controller => 'images', :action => 'show_thumb', :id => image.id)), gallery %></td>
  11. <% end %>
  12. <% end %>
Add Comment
Please, Sign In to add comment