<%= link_to_if_authorized l(:button_edit), {:controller => 'documents', :action => 'edit', :id => @document}, :class => 'pic picEdit' %>
<%= link_to_if_authorized l(:button_delete), {:controller => 'documents', :action => 'destroy', :id => @document}, :confirm => l(:text_are_you_sure), :post => true, :class => 'pic picDelete' %>
<%= @document.title %>
<%= @document.category.name %>
<%= format_date @document.created_on %>
<%= textilizable @document.description %>
<%= 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), :post => true, :class => 'pic picDelete' %>
<%= link_to attachment.filename, :action => 'download', :id => @document, :attachment_id => attachment %>
(<%= human_size attachment.filesize %>)
<%= attachment.author.display_name %>, <%= format_date(attachment.created_on) %>
<%= lwr(:label_download, attachment.downloads) %>
<% end %>
<% if authorize_for('documents', 'add_attachment') %>
<%= start_form_tag ({ :controller => 'documents', :action => 'add_attachment', :id => @document }, :multipart => true) %>
<%= file_field 'attachment', 'file' %>
<%= submit_tag l(:button_add) %>
<%= end_form_tag %>
<% end %>