show.rhtml
37 lines
| 1.9 KiB
| text/html+ruby
|
RhtmlLexer
|
r90 | <div class="contextual"> | ||
<%= 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' %> | ||||
</div> | ||||
|
r2 | <h2><%= @document.title %></h2> | ||
|
r58 | <p><em><%= @document.category.name %><br /> | ||
<%= format_date @document.created_on %></em></p> | ||||
<%= textilizable @document.description %> | ||||
<br /> | ||||
|
r2 | |||
|
r58 | <h3><%= l(:label_attachment_plural) %></h3> | ||
|
r114 | <ul class="documents"> | ||
|
r22 | <% for attachment in @attachments %> | ||
|
r58 | <li> | ||
|
r90 | <div class="contextual"> | ||
<%= 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' %> | ||||
</div> | ||||
|
r58 | <%= 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> | ||||
|
r2 | <% end %> | ||
|
r58 | </ul> | ||
|
r2 | <br /> | ||
|
r58 | |||
|
r2 | <% if authorize_for('documents', 'add_attachment') %> | ||
|
r127 | <%= start_form_tag ({ :controller => 'documents', :action => 'add_attachment', :id => @document }, :multipart => true, :class => "tabular") %> | ||
<p id="attachments_p"><label for="attachment_file"><%=l(:label_attachment)%> | ||||
<%= link_to_function image_tag('add'), "addFileField()" %></label> | ||||
|
r128 | <%= file_field_tag 'attachments[]', :size => 30 %> <em>(<%= l(:label_max_size) %>: <%= human_size(Attachment.max_size) %>)</em></p> | ||
|
r12 | <%= submit_tag l(:button_add) %> | ||
|
r2 | <%= end_form_tag %> | ||
<% end %> | ||||