Sha256: 61ae521777c63c4cfc459e5c0872ea404370302345716fd164cd16429e1099fd
Contents?: true
Size: 617 Bytes
Versions: 14
Compression:
Stored size: 617 Bytes
Contents
<h1>Listing photo_files</h1> <table> <tr> <th>Image filename</th> <th>Image width</th> <th>Image height</th> </tr> <% for photo_file in @photo_files %> <tr> <td><%=h photo_file.image_filename %></td> <td><%=h photo_file.image_width %></td> <td><%=h photo_file.image_height %></td> <td><%= link_to 'Show', photo_file %></td> <td><%= link_to 'Edit', edit_photo_file_path(photo_file) %></td> <td><%= link_to 'Destroy', photo_file, :confirm => 'Are you sure?', :method => :delete %></td> </tr> <% end %> </table> <br /> <%= link_to 'New photo_file', new_photo_file_path %>
Version data entries
14 entries across 14 versions & 4 rubygems