_issue.html.erb
14 lines
| 591 B
| text/plain
|
TextLexer
|
r13661 | <h1><%= link_to("#{issue.tracker.name} ##{issue.id}: #{issue.subject}", issue_url) %></h1> | ||
|
r712 | |||
|
r11849 | <%= render_email_issue_attributes(issue, users.first, true) %> | ||
|
r712 | |||
|
r13918 | <div class="description"><%= textilizable(issue, :description, :only_path => false) %></div> | ||
|
r11623 | |||
<% 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 %> | ||||