2010-02-18 22:13:38 +03:00
|
|
|
<h1><%= link_to(h("#{issue.tracker.name} ##{issue.id}: #{issue.subject}"), issue_url) %></h1>
|
2007-09-11 21:12:34 +04:00
|
|
|
|
2013-08-05 21:08:26 +04:00
|
|
|
<%= render_email_issue_attributes(issue, users.first, true) %>
|
2007-09-11 21:12:34 +04:00
|
|
|
|
2012-02-28 00:43:25 +04:00
|
|
|
<%= textilizable(issue, :description, :only_path => false) %>
|
2013-05-17 20:51:09 +04:00
|
|
|
|
|
|
|
<% 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 %>
|