9 lines
218 B
Text
9 lines
218 B
Text
- title "New Photo"
|
|
|
|
= form_for( @photo, :html => {:multipart => true}) do |f|
|
|
= f.error_messages
|
|
%p
|
|
= f.file_field :image
|
|
= f.submit 'post it!', :class => 'button'
|
|
|
|
%p= link_to "Back to List", photos_path
|