Skip to content

Instantly share code, notes, and snippets.

@technicalpickles
Created October 15, 2008 17:36
Show Gist options
  • Save technicalpickles/16965 to your computer and use it in GitHub Desktop.
Save technicalpickles/16965 to your computer and use it in GitHub Desktop.
<%= form.error_messages %>
<dl>
<dt><%= form.label :name %></dt>
<dd><%= form.text_field :name %></dd>
<dt><%= form.label :description %></dt>
<dd><%= form.text_area :description %></dd>
<dt><%= form.label :asset %></dt>
<dd><%= form.file_field :asset %></dd>
</dl>
class Download < ActiveRecord::Base
has_attached_file :asset
validates_attachment_presence :asset
end
<% form_for(@download) do |form| %>
<%= render :partial => 'form', :locals => {:form => form} %>
<p><%= form.submit 'Create' %></p>
<% end %>
<p><%= link_to 'Back', downloads_path %></p>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment