Displaying 1 result from an estimated 1 matches for "edit_photo_path".
2011 Aug 27
5
image override*
...<% @photos.each do |photo| %>
<tr>
<td><%=h photo.filename %></td>
<td><%= image_tag photo.filename%></td>
<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 '', new_photo_path %>...