Sha256: 3297308fbfa95274d4b045d90cce5d9a08bdfc6c435fe2f43e1a694edcf3e2d6
Contents?: true
Size: 1.46 KB
Versions: 34
Compression:
Stored size: 1.46 KB
Contents
<div class="contextual"> <% if User.current.allowed_to?(:edit_documents, @project) %> <%= link_to l(:button_edit), edit_document_path(@document), :class => 'icon icon-edit', :accesskey => accesskey(:edit) %> <% end %> <% if User.current.allowed_to?(:delete_documents, @project) %> <%= delete_link document_path(@document) %> <% end %> </div> <h2><%= @document.title %></h2> <p><em><%= @document.category.name %><br /> <%= format_date @document.created_on %></em></p> <% if @document.custom_field_values.any? %> <ul> <% render_custom_field_values(@document) do |custom_field, formatted| %> <li><span class="label"><%= custom_field.name %>:</span> <%= formatted %></li> <% end %> </ul> <% end %> <div class="wiki"> <%= textilizable @document, :description, :attachments => @document.attachments %> </div> <h3><%= l(:label_attachment_plural) %></h3> <%= link_to_attachments @document %> <% if authorize_for('documents', 'add_attachment') %> <p><%= link_to l(:label_attachment_new), {}, :onclick => "$('#add_attachment_form').show(); return false;", :id => 'attach_files_link' %></p> <%= form_tag({ :controller => 'documents', :action => 'add_attachment', :id => @document }, :multipart => true, :id => "add_attachment_form", :style => "display:none;") do %> <div class="box"> <p><%= render :partial => 'attachments/form' %></p> </div> <%= submit_tag l(:button_add) %> <% end %> <% end %> <% html_title @document.title -%>
Version data entries
34 entries across 34 versions & 1 rubygems