Skip to content

Instantly share code, notes, and snippets.

@Znow
Created June 23, 2011 10:28
Show Gist options
  • Select an option

  • Save Znow/1042315 to your computer and use it in GitHub Desktop.

Select an option

Save Znow/1042315 to your computer and use it in GitHub Desktop.
#images/_form.haml
.field
= f.label :title
%br/
= f.text_field :title
.field
= f.label :gallery_id
%br/
%select
- @gallery.each do |gallery|
%option{:value => gallery.id}= gallery.name
.field
= f.label :image
%br/
= f.file_field :image
.actions
= f.submit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment