##// END OF EJS Templates
Display due date in red on overdue issues (#20812)....
Display due date in red on overdue issues (#20812). git-svn-id: http://svn.redmine.org/redmine/trunk@14732 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r13661:b778c51e9049
r14350:aeab970972dc
Show More
_links.html.erb
38 lines | 1.5 KiB | text/plain | TextLexer
Jean-Philippe Lang
Attachments can now be added to wiki pages (original patch by Pavol Murin). Only authorized users can add/delete attachments....
r538 <div class="attachments">
Jean-Philippe Lang
Edit attachments after upload (#1326)....
r13283 <div class="contextual">
Jean-Philippe Lang
Adds a more specific title for the attachments edit link (#1326)....
r13285 <%= link_to image_tag('edit.png'),
container_attachments_edit_path(container),
Jean-Philippe Lang
Don't check if attachments are editable individually....
r13553 :title => l(:label_edit_attachments) if options[:editable] %>
Jean-Philippe Lang
Edit attachments after upload (#1326)....
r13283 </div>
Jean-Philippe Lang
Attachments can now be added to wiki pages (original patch by Pavol Murin). Only authorized users can add/delete attachments....
r538 <% for attachment in attachments %>
Jean-Philippe Lang
Change attachment link to download and add a view link for text attachments (#4774)....
r8525 <p><%= link_to_attachment attachment, :class => 'icon icon-attachment', :download => true -%>
Toshi MARUYAMA
replace tabs to spaces at app/views/attachments/_links.html.erb...
r9190 <% if attachment.is_text? %>
<%= link_to image_tag('magnifier.png'),
Jean-Philippe Lang
Change attachment link to download and add a view link for text attachments (#4774)....
r8525 :controller => 'attachments', :action => 'show',
:id => attachment, :filename => attachment.filename %>
<% end %>
Jean-Philippe Lang
Removed unneeded #h calls in views....
r13661 <%= " - #{attachment.description}" unless attachment.description.blank? %>
Jean-Philippe Lang
Moved the magnifier just after the filename....
r9198 <span class="size">(<%= number_to_human_size attachment.filesize %>)</span>
Toshi MARUYAMA
replace tabs to spaces at app/views/attachments/_links.html.erb...
r9190 <% if options[:deletable] %>
Jean-Philippe Lang
Resourcified attachments....
r7828 <%= link_to image_tag('delete.png'), attachment_path(attachment),
Jean-Philippe Lang
Deprecated :confirm => 'Text' option....
r9754 :data => {:confirm => l(:text_are_you_sure)},
Jean-Philippe Lang
Resourcified attachments....
r7828 :method => :delete,
Jean-Philippe Lang
Adds an optional description to attachments....
r1166 :class => 'delete',
:title => l(:button_delete) %>
<% end %>
Jean-Philippe Lang
AttachmentsController now handles attachments deletion....
r2114 <% if options[:author] %>
Jean-Philippe Lang
Removed unneeded #h calls in views....
r13661 <span class="author"><%= attachment.author %>, <%= format_time(attachment.created_on) %></span>
Jean-Philippe Lang
Attachments can now be added to wiki pages (original patch by Pavol Murin). Only authorized users can add/delete attachments....
r538 <% end %>
</p>
<% end %>
Jean-Philippe Lang
Displays thumbnails of attached images of the issue view (#1006)....
r9750 <% if defined?(thumbnails) && thumbnails %>
<% images = attachments.select(&:thumbnailable?) %>
<% if images.any? %>
<div class="thumbnails">
<% images.each do |attachment| %>
<div><%= thumbnail_tag(attachment) %></div>
<% end %>
</div>
<% end %>
<% end %>
Jean-Philippe Lang
Attachments can now be added to wiki pages (original patch by Pavol Murin). Only authorized users can add/delete attachments....
r538 </div>