##// END OF EJS Templates
Fixed version field on issue view page now links to the corresponding version in the roadmap....
Jean-Philippe Lang -
r559:2dbb3978184e
parent child
Show More
@@ -21,6 +21,8 class IssuesController < ApplicationController
21 21
22 22 cache_sweeper :issue_sweeper, :only => [ :edit, :change_status, :destroy ]
23 23
24 helper :projects
25 include ProjectsHelper
24 26 helper :custom_fields
25 27 include CustomFieldsHelper
26 28 helper :ifpdf
@@ -27,7 +27,7
27 27 <td><b><%=l(:field_done_ratio)%> :</b></td><td><%= @issue.done_ratio %> %</td>
28 28 </tr>
29 29 <tr>
30 <td><b><%=l(:field_fixed_version)%> :</b></td><td><%= @issue.fixed_version ? @issue.fixed_version.name : "-" %></td>
30 <td><b><%=l(:field_fixed_version)%> :</b></td><td><%= @issue.fixed_version ? link_to_version(@issue.fixed_version) : "-" %></td>
31 31 <td><b><%=l(:label_spent_time)%> :</b></td>
32 32 <td><%= @issue.spent_hours > 0 ? (link_to lwr(:label_f_hour, @issue.spent_hours), {:controller => 'timelog', :action => 'details', :issue_id => @issue}, :class => 'icon icon-time') : "-" %></td>
33 33 </tr>
General Comments 0
You need to be logged in to leave comments. Login now