|
|
|
@ -1,47 +1,48 @@ |
|
|
|
|
<h2><%= @document.title %></h2> |
|
|
|
|
|
|
|
|
|
<strong><%=l(:field_description)%>:</strong> <%= @document.description %><br /> |
|
|
|
|
<strong><%=l(:field_category)%>:</strong> <%= @document.category.name %><br /> |
|
|
|
|
<br /> |
|
|
|
|
<p><em><%= @document.category.name %><br /> |
|
|
|
|
<%= format_date @document.created_on %></em></p> |
|
|
|
|
<%= textilizable @document.description %> |
|
|
|
|
|
|
|
|
|
<% if authorize_for('documents', 'edit') %> |
|
|
|
|
<%= start_form_tag({ :controller => 'documents', :action => 'edit', :id => @document }, :method => 'get' ) %> |
|
|
|
|
<%= submit_tag l(:button_edit) %> |
|
|
|
|
<%= end_form_tag %> |
|
|
|
|
<% end %> |
|
|
|
|
|
|
|
|
|
<table width="100%"> |
|
|
|
|
<tr><td><%= link_to_if_authorized l(:button_edit), :controller => 'documents', :action => 'edit', :id => @document %></td> |
|
|
|
|
<td align="right"> |
|
|
|
|
<% if authorize_for('documents', 'destroy') %> |
|
|
|
|
<%= start_form_tag({ :controller => 'documents', :action => 'destroy', :id => @document } ) %> |
|
|
|
|
<%= submit_tag l(:button_delete) %> |
|
|
|
|
<%= end_form_tag %> |
|
|
|
|
<%= end_form_tag %> |
|
|
|
|
<% end %> |
|
|
|
|
</td></tr> |
|
|
|
|
</table> |
|
|
|
|
<br /> |
|
|
|
|
|
|
|
|
|
<br /><br /> |
|
|
|
|
|
|
|
|
|
<table class="reportTableContent"> |
|
|
|
|
<h3><%= l(:label_attachment_plural) %></h3> |
|
|
|
|
<ul> |
|
|
|
|
<% for attachment in @attachments %> |
|
|
|
|
<tr class="<%= cycle("odd", "even") %>"> |
|
|
|
|
<td><%= format_date(attachment.created_on) %></td> |
|
|
|
|
<td><%= link_to attachment.filename, :action => 'download', :id => @document, :attachment_id => attachment %></td> |
|
|
|
|
<td align="center"><%= attachment.author.display_name %></td> |
|
|
|
|
<td><%= human_size(attachment.filesize) %><br /><%= lwr(:label_download, attachment.downloads) %></td> |
|
|
|
|
|
|
|
|
|
<% if authorize_for('documents', 'destroy_attachment') %> |
|
|
|
|
<td align="center"> |
|
|
|
|
<%= start_form_tag :action => 'destroy_attachment', :id => @document, :attachment_id => attachment %> |
|
|
|
|
<%= submit_tag l(:button_delete), :class => "button-small" %> |
|
|
|
|
<%= end_form_tag %> |
|
|
|
|
</tr> |
|
|
|
|
<% end %> |
|
|
|
|
|
|
|
|
|
<li> |
|
|
|
|
<% if authorize_for('documents', 'destroy') %> |
|
|
|
|
<div style="float:right;padding:6px;"> |
|
|
|
|
<%= start_form_tag({ :controller => 'documents', :action => 'destroy', :id => @document } ) %> |
|
|
|
|
<%= submit_tag l(:button_delete), :class => 'button-small' %> |
|
|
|
|
<%= end_form_tag %> |
|
|
|
|
</div> |
|
|
|
|
<% end %> |
|
|
|
|
|
|
|
|
|
<%= link_to attachment.filename, :action => 'download', :id => @document, :attachment_id => attachment %> |
|
|
|
|
(<%= human_size attachment.filesize %>)<br /> |
|
|
|
|
<em><%= attachment.author.display_name %>, <%= format_date(attachment.created_on) %></em><br /> |
|
|
|
|
<%= lwr(:label_download, attachment.downloads) %> |
|
|
|
|
</li> |
|
|
|
|
<% end %> |
|
|
|
|
</table> |
|
|
|
|
</ul> |
|
|
|
|
<br /> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<% if authorize_for('documents', 'add_attachment') %> |
|
|
|
|
<%= start_form_tag ({ :controller => 'documents', :action => 'add_attachment', :id => @document }, :multipart => true) %> |
|
|
|
|
<%=l(:label_attachment_new)%><br /><%= file_field 'attachment', 'file' %> |
|
|
|
|
<label><%=l(:label_attachment_new)%></label> |
|
|
|
|
<%= file_field 'attachment', 'file' %> |
|
|
|
|
<%= submit_tag l(:button_add) %> |
|
|
|
|
<%= end_form_tag %> |
|
|
|
|
<% end %> |
|
|
|
|
|
|
|
|
|