%= link_to 'Add new gallery', new_admin_gallery_gallery_path, :class => 'big button' %>
Preview | Name | Actions |
---|---|---|
<% gallery.photos.limit(1).each do |photo| %> <%= image_tag(photo.image.url(:admin_thumb)) %> <% end %> | <%= link_to gallery.title, admin_gallery_gallery_photos_path(gallery) %> | <%= link_to 'Show Photos', admin_gallery_gallery_photos_path(gallery) %> <%= link_to 'Edit', edit_admin_gallery_gallery_path(gallery) %> <%= link_to 'Delete', admin_gallery_gallery_path(gallery), :method => :delete, :confirm => 'Are you sure?' %> |