<%= link_to_if_authorized l(:button_edit), {:controller => 'documents', :action => 'edit', :id => @document}, :class => 'icon icon-edit', :accesskey => accesskey(:edit) %>
<%= link_to_if_authorized l(:button_delete), {:controller => 'documents', :action => 'destroy', :id => @document}, :confirm => l(:text_are_you_sure), :method => :post, :class => 'icon icon-del' %>
<%=h @document.title %>
<%=h @document.category.name %>
<%= format_date @document.created_on %>
<%= textilizable @document.description, :attachments => @document.attachments %>
<%= l(:label_attachment_plural) %>
<% for attachment in @attachments %>
-
<%= link_to_if_authorized l(:button_delete), {:controller => 'documents', :action => 'destroy_attachment', :id => @document, :attachment_id => attachment}, :confirm => l(:text_are_you_sure), :method => :post, :class => 'icon icon-del' %>
<%= link_to attachment.filename, :action => 'download', :id => @document, :attachment_id => attachment %>
(<%= number_to_human_size attachment.filesize %>)
<%= authoring attachment.created_on, attachment.author %>
<%= lwr(:label_download, attachment.downloads) %>
<% end %>
<% if authorize_for('documents', 'add_attachment') %>
<%= toggle_link l(:label_attachment_new), "add_attachment_form" %>
<% form_tag({ :controller => 'documents', :action => 'add_attachment', :id => @document }, :multipart => true, :class => "tabular", :id => "add_attachment_form", :style => "display:none;") do %>
<%= render :partial => 'attachments/form' %>
<%= submit_tag l(:button_add) %>
<% end %>
<% end %>
<% set_html_title h(@document.title) -%>