2006-06-28 22:11:03 +04:00
|
|
|
<h2><%= @document.title %></h2>
|
|
|
|
|
2006-07-29 23:54:22 +04:00
|
|
|
<strong><%=l(:field_description)%>:</strong> <%= @document.description %><br />
|
|
|
|
<strong><%=l(:field_category)%>:</strong> <%= @document.category.name %><br />
|
2006-06-28 22:11:03 +04:00
|
|
|
<br />
|
|
|
|
|
|
|
|
<% if authorize_for('documents', 'edit') %>
|
2006-07-29 23:54:22 +04:00
|
|
|
<%= start_form_tag({ :controller => 'documents', :action => 'edit', :id => @document }, :method => 'get' ) %>
|
|
|
|
<%= submit_tag l(:button_edit) %>
|
2006-06-28 22:11:03 +04:00
|
|
|
<%= end_form_tag %>
|
|
|
|
<% end %>
|
|
|
|
|
|
|
|
<% if authorize_for('documents', 'destroy') %>
|
2006-07-29 23:54:22 +04:00
|
|
|
<%= start_form_tag({ :controller => 'documents', :action => 'destroy', :id => @document } ) %>
|
|
|
|
<%= submit_tag l(:button_delete) %>
|
2006-06-28 22:11:03 +04:00
|
|
|
<%= end_form_tag %>
|
|
|
|
<% end %>
|
|
|
|
|
|
|
|
<br /><br />
|
|
|
|
|
2006-10-22 18:47:25 +04:00
|
|
|
<table class="reportTableContent">
|
2006-10-08 14:42:50 +04:00
|
|
|
<% for attachment in @attachments %>
|
|
|
|
<tr class="<%= cycle("odd", "even") %>">
|
|
|
|
<td><%= format_date(attachment.created_on) %></td>
|
2006-06-28 22:11:03 +04:00
|
|
|
<td><%= link_to attachment.filename, :action => 'download', :id => @document, :attachment_id => attachment %></td>
|
|
|
|
<td align="center"><%= attachment.author.display_name %></td>
|
2006-07-29 23:54:22 +04:00
|
|
|
<td><%= human_size(attachment.filesize) %><br /><%= lwr(:label_download, attachment.downloads) %></td>
|
2006-07-09 20:30:01 +04:00
|
|
|
|
2006-06-28 22:11:03 +04:00
|
|
|
<% if authorize_for('documents', 'destroy_attachment') %>
|
|
|
|
<td align="center">
|
|
|
|
<%= start_form_tag :action => 'destroy_attachment', :id => @document, :attachment_id => attachment %>
|
2006-07-29 23:54:22 +04:00
|
|
|
<%= submit_tag l(:button_delete), :class => "button-small" %>
|
2006-06-28 22:11:03 +04:00
|
|
|
<%= end_form_tag %>
|
|
|
|
</tr>
|
2006-07-09 20:30:01 +04:00
|
|
|
<% end %>
|
|
|
|
|
2006-06-28 22:11:03 +04:00
|
|
|
<% end %>
|
|
|
|
</table>
|
|
|
|
<br />
|
|
|
|
|
|
|
|
<% if authorize_for('documents', 'add_attachment') %>
|
|
|
|
<%= start_form_tag ({ :controller => 'documents', :action => 'add_attachment', :id => @document }, :multipart => true) %>
|
2006-07-29 23:54:22 +04:00
|
|
|
<%=l(:label_attachment_new)%><br /><%= file_field 'attachment', 'file' %>
|
|
|
|
<%= submit_tag l(:button_add) %>
|
2006-06-28 22:11:03 +04:00
|
|
|
<%= end_form_tag %>
|
|
|
|
<% end %>
|
|
|
|
|