Sha256: 59013af9e55a884469945d0c36876b7299e6c09bc9dbbf6bed5c0c1dc3b12bb7
Contents?: true
Size: 529 Bytes
Versions: 50
Compression:
Stored size: 529 Bytes
Contents
= render 'ish_manager/galleries/menu', count: @galleries.count %table.bordered.data-table %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
50 entries across 50 versions & 1 rubygems