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

Version Path
binda-0.1.11 app/views/binda/galleries/index.html.erb
binda-0.1.10 app/views/binda/galleries/index.html.erb
binda-0.1.9 app/views/binda/galleries/index.html.erb
binda-0.1.8 app/views/binda/galleries/index.html.erb
binda-0.1.7 app/views/binda/galleries/index.html.erb
binda-0.1.6 app/views/binda/galleries/index.html.erb
binda-0.1.5 app/views/binda/galleries/index.html.erb
binda-0.1.4 app/views/binda/galleries/index.html.erb
binda-0.1.3 app/views/binda/galleries/index.html.erb
binda-0.1.2 app/views/binda/galleries/index.html.erb
binda-0.1.1 app/views/binda/galleries/index.html.erb
binda-0.1.0 app/views/binda/galleries/index.html.erb
binda-0.0.7 app/views/binda/galleries/index.html.erb
binda-0.0.6 app/views/binda/galleries/index.html.erb
binda-0.0.5 app/views/binda/galleries/index.html.erb
binda-0.0.3 app/views/binda/galleries/index.html.erb
binda-0.0.2 app/views/binda/galleries/index.html.erb