| <%= form.label :title %> | <%= form.text_field :title %> |
| <%= form.label :video %> | <%= form.file_field :video, :accept => 'video/quicktime,video/mp4' %> |
| <%= form.label :category %> | <%= form.select :category_id, Category.all.collect{ |t| [ t.name, t.id ] }%> |
| <%= form.label :tag %> | <%= collection_select(:clip, :tag_ids, Tag.all, :id, :name, {}, { :multiple => true } )%> |
| <%= form.submit %> | |