Sha256: 982f7525c59fbb479d98e3a930fa0aa6c89a1a6515e1ee96c96b0d06aa64d9e7
Contents?: true
Size: 359 Bytes
Versions: 5
Compression:
Stored size: 359 Bytes
Contents
<h1>Listing photos</h1> <table> <tr> </tr> <% @photos.each do |photo| %> <tr> <td><%= link_to 'Show', photo %></td> <td><%= link_to 'Edit', edit_photo_path(photo) %></td> <td><%= link_to 'Destroy', photo, :confirm => 'Are you sure?', :method => :delete %></td> </tr> <% end %> </table> <br /> <%= link_to 'New photo', new_photo_path %>
Version data entries
5 entries across 5 versions & 2 rubygems