%h2= form.label :name
= form.text_field :name
%h2
= form.label :category_id
= form.collection_select :category_id, Category.find(:all, :order => :name), :id, :name, :include_blank => true
%span= link_to 'Add/delete categories', admin_categories_path, :confirm => 'IMPORTANT: If you click the OK button to continue on to add/delete categories, any changes you have made to this item will not be saved.'
%h2= form.label :description
= form.text_area :description