Sha256: 1427d56289e9220b8e37f73f9ee5dbc99c28f2a654320ab9975ce032e49be44a
Contents?: true
Size: 624 Bytes
Versions: 17
Compression:
Stored size: 624 Bytes
Contents
<p id="notice"><%= notice %></p> <h1>Galleries</h1> <table> <thead> <tr> <th>Name</th> <th>Slug</th> <th colspan="3"></th> </tr> </thead> <tbody> <% @galleries.each do |gallery| %> <tr> <td><%= gallery.name %></td> <td><%= gallery.slug %></td> <td><%= link_to 'Show', gallery %></td> <td><%= link_to 'Edit', edit_gallery_path(gallery) %></td> <td><%= link_to 'Destroy', gallery, method: :delete, data: { confirm: 'Are you sure?' } %></td> </tr> <% end %> </tbody> </table> <br> <%= link_to 'New Gallery', new_gallery_path %>
Version data entries
17 entries across 17 versions & 1 rubygems