11 lines
410 B
Plaintext
11 lines
410 B
Plaintext
<%= form.label :title, :Title, {:class => 'big'} %><br />
|
|
<%= form.text_field :title, {:class => 'big'} %><br />
|
|
|
|
<%= form.label :description %><br />
|
|
<%= form.text_area :description %><br />
|
|
|
|
<%= form.label :album %><br />
|
|
<%= collection_select :collection, :album_list, Album.find(:all), :id, :title, {:selected => @collection.albums.map{|album|album.id} }, {:multiple => true, :rows => 10} %><br />
|
|
|
|
|
|
<br /> |