Sha256: abb72f73e2423319508a7347267a198282211a188c5bb81c029920fde5b378b4

Contents?: true

Size: 519 Bytes

Versions: 6

Compression:

Stored size: 519 Bytes

Contents

= render 'ish_manager/galleries/menu', count: @galleries.count

%table#dataTable
  %thead
    %tr
      %th Public?
      %th Title
      %th Created At
      %th Actions
  %tbody
    - @galleries.each do |g|
      %tr
        %td= is_public_image_tag( g )
        %td= link_to g.name, gallery_path( g )
        %td= g.created_at.to_s.slice(0, 10)
        %td
          = link_to '[~]', edit_gallery_path( g )
          = link_to '[x]', gallery_path( g ), :method => :delete, :data => { :confirm => 'Are you sure?' }

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
ish_manager-0.1.8.461 app/views/ish_manager/galleries/index_titles.haml
ish_manager-0.1.8.460 app/views/ish_manager/galleries/index_titles.haml
ish_manager-0.1.8.459 app/views/ish_manager/galleries/index_titles.haml
ish_manager-0.1.8.458 app/views/ish_manager/galleries/index_titles.haml
ish_manager-0.1.8.457 app/views/ish_manager/galleries/index_titles.haml
ish_manager-0.1.8.456 app/views/ish_manager/galleries/index_titles.haml