<%=_('New document')%>
<%= error_messages_for 'document' %>
<%= start_form_tag( { :action => 'add_document', :id => @project }, :multipart => true) %>
<%= text_field 'document', 'title', :size => 60 %>
<%= text_area 'document', 'descr', :cols => 60, :rows => 5 %>
<%= file_field 'attachment', 'file' %>
<%= submit_tag _('Create') %>
<%= end_form_tag %>