##// END OF EJS Templates
Merged r14050 (#19260)....
Merged r14050 (#19260). git-svn-id: http://svn.redmine.org/redmine/branches/2.6-stable@14059 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r11849:fd1b06070559
r13677:9da5692aee52
Show More
_issue.html.erb
14 lines | 563 B | text/plain | TextLexer
<h1><%= link_to(h("#{issue.tracker.name} ##{issue.id}: #{issue.subject}"), issue_url) %></h1>
<%= render_email_issue_attributes(issue, users.first, true) %>
<%= textilizable(issue, :description, :only_path => false) %>
<% if issue.attachments.any? %>
<fieldset class="attachments"><legend><%= l(:label_attachment_plural) %></legend>
<% issue.attachments.each do |attachment| %>
<%= link_to_attachment attachment, :download => true, :only_path => false %>
(<%= number_to_human_size(attachment.filesize) %>)<br />
<% end %>
</fieldset>
<% end %>