<%= error_messages_for @document %>

<%= f.select :category_id, DocumentCategory.active.collect {|c| [c.name, c.id]} %>

<%= f.check_box :is_public, :style => "margin-left:10px;" %> <%= l(:label_document_public_info) %>

<%= f.text_field :title, :required => true, :size => 60 %>

<%= f.text_area :description, :cols => 60, :rows => 15, :class => 'wiki-edit' %>

<%= wikitoolbar_for 'document_description' %>

<%= render :partial => 'attachments/form', :locals => {:container => @document} %>