Sha256: f4fe9616ad28b5d682ffb82e7fbe24a06e12b1c9107433bf31b4823a8779bcb5
Contents?: true
Size: 957 Bytes
Versions: 15
Compression:
Stored size: 957 Bytes
Contents
<%= content_for :data_controls do %> <%= link_to "New Photo Gallery", new_spud_admin_photo_gallery_path, :class => "btn btn-primary", :title => "New Photo Gallery" %> <% end %> <%= content_for :detail do %> <div id="spud_admin_photo_galleries" class="spud_admin_photo_ui_thumbs"> <% @photo_galleries.each do |gallery| %> <div id="spud_admin_photo_gallery_<%= gallery.id %>" class="spud_admin_photo_ui_thumb" style="background-image:url('<%= gallery.top_photo_url(:spud_admin_small) %>')"> <h5><%= gallery.title %></h5> <div class="spud_admin_photo_ui_thumb_controls"> <%= link_to 'Edit', edit_spud_admin_photo_gallery_path(gallery), :class => 'spud_admin_photos_btn_edit' %> <%= link_to 'Delete', spud_admin_photo_gallery_path(gallery), :method => :delete, :class => 'spud_admin_photos_btn_delete', :remote => true, :confirm => 'Are you sure?' %> </div> </div> <% end %> <div> <% end %>
Version data entries
15 entries across 15 versions & 2 rubygems