Skip to content

Instantly share code, notes, and snippets.

@kristenhazard
Created November 13, 2012 22:39
Show Gist options
  • Save kristenhazard/4068924 to your computer and use it in GitHub Desktop.
Save kristenhazard/4068924 to your computer and use it in GitHub Desktop.
File upload
<%= form_for @location, :html => {:multipart => true} do |f| %>
<p>
<label>Photo</label>
<%= image_tag(@location.photo_url) if @location.avatar? %>
<%= f.file_field :photo %>
<%= f.hidden_field :photo_cache %>
</p>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment