<% content_for :left do %> <%= button_link_to('Upload An Image', new_admin_gallery_image_path(@gallery), :class => 'remote', :icon => 'upload') %> <%= button_link_to('Upload Multiple', upload_admin_gallery_images_path(@gallery), :class => 'remote', :icon => 'upload') %> <% end %>

<%= @gallery.name %> <%= button_link_to('Edit', edit_admin_gallery_path(@gallery), :class => 'remote', :icon => 'edit') %>

<% if @gallery.images.empty? -%>

You haven't uploaded any images!

Get started: <%= button_link_to('Upload an Image', new_admin_gallery_image_path(@gallery), :class => 'remote') %>
<% else -%>
<%= render :partial => 'gallery', :locals => {:gallery => @gallery, :editable => true} %>
<% end -%>