To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.
root / .svn / pristine / cd / cd616cb8a21cd26998b00199d18b19fd0b8aadef.svn-base @ 1297:0a574315af3e
History | View | Annotate | Download (1.16 KB)
| 1 | 1296:038ba2d95de8 | Chris | <div class="contextual"> |
|---|---|---|---|
| 2 | <% if User.current.allowed_to?(:manage_documents, @project) %> |
||
| 3 | <%= link_to l(:button_edit), edit_document_path(@document), :class => 'icon icon-edit', :accesskey => accesskey(:edit) %> |
||
| 4 | <%= delete_link document_path(@document) %> |
||
| 5 | <% end %> |
||
| 6 | </div> |
||
| 7 | |||
| 8 | <h2><%=h @document.title %></h2> |
||
| 9 | |||
| 10 | <p><em><%=h @document.category.name %><br /> |
||
| 11 | <%= format_date @document.created_on %></em></p> |
||
| 12 | <div class="wiki"> |
||
| 13 | <%= textilizable @document.description, :attachments => @document.attachments %> |
||
| 14 | </div> |
||
| 15 | |||
| 16 | <h3><%= l(:label_attachment_plural) %></h3> |
||
| 17 | <%= link_to_attachments @document %> |
||
| 18 | |||
| 19 | <% if authorize_for('documents', 'add_attachment') %>
|
||
| 20 | <p><%= link_to l(:label_attachment_new), {}, :onclick => "$('#add_attachment_form').show(); return false;",
|
||
| 21 | :id => 'attach_files_link' %></p> |
||
| 22 | <%= form_tag({ :controller => 'documents', :action => 'add_attachment', :id => @document }, :multipart => true, :id => "add_attachment_form", :style => "display:none;") do %>
|
||
| 23 | <div class="box"> |
||
| 24 | <p><%= render :partial => 'attachments/form' %></p> |
||
| 25 | </div> |
||
| 26 | <%= submit_tag l(:button_add) %> |
||
| 27 | <% end %> |
||
| 28 | <% end %> |
||
| 29 | |||
| 30 | <% html_title @document.title -%> |