##// END OF EJS Templates
extend mail header test to text mail (#13482)...
extend mail header test to text mail (#13482) git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11719 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r10976:48fb02e3839c
r11489:c709c5120c5c
Show More
show.html.erb
32 lines | 1.2 KiB | text/plain | TextLexer
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <div class="contextual">
Jean-Philippe Lang
Split "Manage documents" permission into create, edit and delete permissions (#12401)....
r10976 <% if User.current.allowed_to?(:edit_documents, @project) %>
Jean-Philippe Lang
Resourcified documents....
r7890 <%= link_to l(:button_edit), edit_document_path(@document), :class => 'icon icon-edit', :accesskey => accesskey(:edit) %>
Jean-Philippe Lang
Split "Manage documents" permission into create, edit and delete permissions (#12401)....
r10976 <% end %>
<% if User.current.allowed_to?(:delete_documents, @project) %>
Jean-Philippe Lang
Deprecated :confirm => 'Text' option....
r9754 <%= delete_link document_path(@document) %>
Jean-Philippe Lang
Resourcified documents....
r7890 <% end %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 </div>
Jean-Philippe Lang
More detailed html title on several views....
r951 <h2><%=h @document.title %></h2>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330
Jean-Philippe Lang
More detailed html title on several views....
r951 <p><em><%=h @document.category.name %><br />
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <%= format_date @document.created_on %></em></p>
Jean-Philippe Lang
Fixed: table of content not rendered properly when used in an issue or document description....
r1022 <div class="wiki">
Jean-Philippe Lang
Attachments can be displayed inline in Documents...
r549 <%= textilizable @document.description, :attachments => @document.attachments %>
Jean-Philippe Lang
Fixed: table of content not rendered properly when used in an issue or document description....
r1022 </div>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330
<h3><%= l(:label_attachment_plural) %></h3>
Jean-Philippe Lang
AttachmentsController now handles attachments deletion....
r2114 <%= link_to_attachments @document %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330
<% if authorize_for('documents', 'add_attachment') %>
Jean-Philippe Lang
JQuery in, Prototype/Scriptaculous out (#11445)....
r9885 <p><%= link_to l(:label_attachment_new), {}, :onclick => "$('#add_attachment_form').show(); return false;",
Jean-Philippe Lang
Adds an optional description to attachments....
r1166 :id => 'attach_files_link' %></p>
Jean-Philippe Lang
Merged rails-3.2 branch....
r9346 <%= form_tag({ :controller => 'documents', :action => 'add_attachment', :id => @document }, :multipart => true, :id => "add_attachment_form", :style => "display:none;") do %>
Jean-Philippe Lang
Adds an optional description to attachments....
r1166 <div class="box">
<p><%= render :partial => 'attachments/form' %></p>
</div>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <%= submit_tag l(:button_add) %>
Toshi MARUYAMA
remove trailing white-spaces from app/views/documents/show.html.erb...
r7142 <% end %>
Jean-Philippe Lang
Initial commit...
r2 <% end %>
Jean-Philippe Lang
More detailed html title on several views....
r951
Etienne Massip
Remove unecessary page title HTML escaping from views (#9252)....
r7445 <% html_title @document.title -%>