mirror of
https://github.com/meineerde/redmine.git
synced 2025-12-24 17:31:14 +00:00
Patch by Go MAEDA. git-svn-id: http://svn.redmine.org/redmine/trunk@19982 e93f8b46-1217-0410-a6f0-8f06a7374b81
18 lines
604 B
Plaintext
18 lines
604 B
Plaintext
<h1>
|
|
<%= link_to("#{issue.tracker.name} ##{issue.id}: #{issue.subject}", issue_url) %>
|
|
<%= issue_status_type_badge(issue.status) %>
|
|
</h1>
|
|
|
|
<%= render_email_issue_attributes(issue, user, 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 %>
|