photomix/app/views/photos/edit.html.erb

10 lines
317 B
Plaintext
Raw Normal View History

2009-05-25 21:39:43 +02:00
<h1>Edit Photo</h1>
<% form_for @photo do |f| %>
<%= f.error_messages %>
<%= render :partial => "form", :object => f %>
<%= f.submit "Update" %>
<% end %>
<%= image_tag APP_CONFIG[:thumbs_path_public] + @photo.album.path + "/" + @photo.id.to_s + "_large.jpg" %>
<br /><%= link_to "All albums", albums_path %>