|
|
|
@ -25,6 +25,10 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
|
|
|
|
|
|
|
|
|
See doc/COPYRIGHT.rdoc for more details. |
|
|
|
|
|
|
|
|
|
Note: This file has probably unusual whitespace usage, regarding common formatting rules. |
|
|
|
|
However, as this is plain text, each and every empty line or indentation will become visible |
|
|
|
|
in the final output. Therefore empty lines are missing and indentations are done AFTER '<%' |
|
|
|
|
|
|
|
|
|
++#%> |
|
|
|
|
|
|
|
|
|
<%= issue.to_s %> |
|
|
|
@ -37,9 +41,14 @@ See doc/COPYRIGHT.rdoc for more details. |
|
|
|
|
<%= WorkPackage.human_attribute_name(:responsible) %>: <%= issue.responsible %> |
|
|
|
|
<%= WorkPackage.human_attribute_name(:category) %>: <%= issue.category %> |
|
|
|
|
<%= WorkPackage.human_attribute_name(:fixed_version) %>: <%= issue.fixed_version %> |
|
|
|
|
|
|
|
|
|
<%= WorkPackage.human_attribute_name(:start_date) %>: <%= issue.start_date %> |
|
|
|
|
<%= WorkPackage.human_attribute_name(:due_date) %>: <%= issue.due_date %> |
|
|
|
|
<%= WorkPackage.human_attribute_name(:estimated_hours)%>: <%= issue.estimated_hours %> |
|
|
|
|
<% if Setting.work_package_done_ratio != 'disabled' %> |
|
|
|
|
<%= WorkPackage.human_attribute_name(:done_ratio) %>: <%= issue.done_ratio %> |
|
|
|
|
<% end %> |
|
|
|
|
<% issue.custom_field_values.each do |value| %> |
|
|
|
|
<%= value.custom_field.name %>: <%= show_value(value) %> |
|
|
|
|
<%= value.custom_field.name %>: <%= show_value(value) %> |
|
|
|
|
<% end %> |
|
|
|
|
|
|
|
|
|
<%= issue.description %> |
|
|
|
|