Sha256: 4149730785105e46c234992746cdbb70219f984f50f89fd178c6aefc6ddbb7ac

Contents?: true

Size: 923 Bytes

Versions: 1

Compression:

Stored size: 923 Bytes

Contents

<%= link_to 'Add new photo', new_gallery_admin_gallery_photo_path, :class => 'big button' %>

<h1>Photos in <%=@gallery.title%></h1>

<table class='formatted'>
  <tbody class='sortable'>
    <% @photos.each do |photo| %>
      <tr id='<%= dom_id(photo) %>'>
        <td>
          <%= image_tag(photo.image.url(:admin_thumb), :class => 'thumb dragger') %>
        </td>
        <td class='main'>
          <div class='title'><%= photo.title %></div>
          <div class='sublabel'><%= photo.slug %></div>
        </td>
        <td class='action_links'>
          <%= link_to 'Crop', crop_gallery_admin_gallery_photo_path(@gallery, photo) %>
          <%= link_to 'Edit', edit_gallery_admin_gallery_photo_path(@gallery, photo) %>
          <%= link_to 'Delete', gallery_admin_gallery_photo_path(@gallery, photo), :method => :delete, :confirm => 'Are you sure?' %>
        </td>
      </tr>
    <% end %>
  </tbody>
</table>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
sofa_gallery-0.0.0 app/views/gallery_admin/photos/index.html.erb