<%= @document.title %>

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

<%= textilizable @document.description %>
<%= link_to_if_authorized l(:button_edit), :controller => 'documents', :action => 'edit', :id => @document %> <% if authorize_for('documents', 'destroy') %> <%= start_form_tag({ :controller => 'documents', :action => 'destroy', :id => @document } ) %> <%= submit_tag l(:button_delete) %> <%= end_form_tag %> <% end %>

<%= l(:label_attachment_plural) %>


<% 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 %>