Sha256: 9bdd67aa9f072eb902e5b7eb88612b33fee43035785ad268723b5267350102bf
Contents?: true
Size: 434 Bytes
Versions: 121
Compression:
Stored size: 434 Bytes
Contents
<h1>Listing photos</h1> <table> <tr> <th>Title</th> </tr> <% for photo in @photos %> <tr> <td><%=h photo.title %></td> <td><%= link_to 'Show', object_url(photo) %></td> <td><%= link_to 'Edit', edit_object_url(photo) %></td> <td><%= link_to 'Destroy', object_url(photo), :confirm => 'Are you sure?', :method => :delete %></td> </tr> <% end %> </table> <br /> <%= link_to 'New photo', new_object_url %>
Version data entries
121 entries across 70 versions & 22 rubygems