<% if User.current.allowed_to?(:manage_documents, @project) %> <%= link_to l(:button_edit), edit_document_path(@document), :class => 'icon icon-edit', :accesskey => accesskey(:edit) %> <%= link_to l(:button_delete), document_path(@document), :confirm => l(:text_are_you_sure), :method => :delete, :class => 'icon icon-del' %> <% end %>

<%=h @document.title %>

<%=h @document.category.name %>
<%= format_date @document.created_on %>

<%= textilizable @document.description, :attachments => @document.attachments %>

<%= l(:label_attachment_plural) %>

<%= link_to_attachments @document %> <% if authorize_for('documents', 'add_attachment') %>

<%= link_to l(:label_attachment_new), {}, :onclick => "Element.show('add_attachment_form'); Element.hide(this); Element.scrollTo('add_attachment_form'); return false;", :id => 'attach_files_link' %>

<%= form_tag({ :controller => 'documents', :action => 'add_attachment', :id => @document }, :multipart => true, :id => "add_attachment_form", :style => "display:none;") do %>

<%= render :partial => 'attachments/form' %>

<%= submit_tag l(:button_add) %> <% end %> <% end %> <% html_title @document.title -%> <% content_for :header_tags do %> <%= stylesheet_link_tag 'scm' %> <% end %>