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

Version Path
redmine_extensions-0.0.39 spec/redmine/app/views/documents/show.html.erb
redmine_extensions-0.0.38 spec/redmine/app/views/documents/show.html.erb
redmine_extensions-0.0.37 spec/redmine/app/views/documents/show.html.erb
redmine_extensions-0.1.11 spec/redmine/app/views/documents/show.html.erb
redmine_extensions-0.1.10 spec/redmine/app/views/documents/show.html.erb
redmine_extensions-0.0.36 spec/redmine/app/views/documents/show.html.erb
redmine_extensions-0.0.34 spec/redmine/app/views/documents/show.html.erb
redmine_extensions-0.1.09 spec/redmine/app/views/documents/show.html.erb
redmine_extensions-0.1.07 spec/redmine/app/views/documents/show.html.erb
redmine_extensions-0.1.06 spec/redmine/app/views/documents/show.html.erb
redmine_extensions-0.1.05 spec/redmine/app/views/documents/show.html.erb
redmine_extensions-0.1.04 spec/redmine/app/views/documents/show.html.erb
redmine_extensions-0.1.03 spec/redmine/app/views/documents/show.html.erb
redmine_extensions-0.0.33 spec/redmine/app/views/documents/show.html.erb
redmine_extensions-0.1.02 spec/redmine/app/views/documents/show.html.erb
redmine_extensions-0.1.01 spec/redmine/app/views/documents/show.html.erb
redmine_extensions-0.0.29 spec/redmine/app/views/documents/show.html.erb
redmine_extensions-0.0.28 spec/redmine/app/views/documents/show.html.erb
redmine_extensions-0.0.27 spec/redmine/app/views/documents/show.html.erb
redmine_extensions-0.0.24 spec/redmine/app/views/documents/show.html.erb