21 lines
807 B
Plaintext
21 lines
807 B
Plaintext
<%= "#{issue.tracker.name} ##{issue.id}: #{issue.subject}" %>
|
|
<%= issue_url %>
|
|
|
|
* <%=l(:field_author)%>: <%= issue.author %>
|
|
* <%=l(:field_status)%>: <%= issue.status %>
|
|
* <%=l(:field_priority)%>: <%= issue.priority %>
|
|
* <%=l(:field_assigned_to)%>: <%= issue.assigned_to %>
|
|
* <%=l(:field_category)%>: <%= issue.category %>
|
|
* <%=l(:field_fixed_version)%>: <%= issue.fixed_version %>
|
|
<% issue.visible_custom_field_values(users.first).each do |c| %>* <%= c.custom_field.name %>: <%= show_value(c) %>
|
|
<% end -%>
|
|
----------------------------------------
|
|
<%= issue.description %>
|
|
|
|
<% if issue.attachments.any? -%>
|
|
---<%= l(:label_attachment_plural).ljust(37, '-') %>
|
|
<% issue.attachments.each do |attachment| -%>
|
|
<%= attachment.filename %> (<%= number_to_human_size(attachment.filesize) %>)
|
|
<% end -%>
|
|
<% end -%>
|