Skip to content

Instantly share code, notes, and snippets.

@Ravenna
Created September 1, 2009 18:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Ravenna/179298 to your computer and use it in GitHub Desktop.
Save Ravenna/179298 to your computer and use it in GitHub Desktop.
<h1>New piece</h1>
<% form_for @piece, :html => { :multipart => true } do |f| %>
<%= f.error_messages %>
<p>
<%= f.label :title %><br />
<%= f.text_field :title %>
</p>
<p>
<%- f.attachment_fields_for :photos do |attachment_fields| %>
<%= attachment_fields.label :name %>
<%= attachment_fields.text_field :name %>
<%= attachment_fields.file_field :data %>
<%- end -%>
</p>
<p>
<%= f.submit 'Create' %>
</p>
<% end %>
<%= link_to 'Back', pieces_path %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment