##// END OF EJS Templates
Merged r3952 from trunk....
Eric Davis -
r3888:ccbc9f8ff963
parent child
Show More
@@ -30,12 +30,14 module IssuesHelper
30 30 end
31 31
32 32 def render_issue_tooltip(issue)
33 @cached_label_status ||= l(:field_status)
33 34 @cached_label_start_date ||= l(:field_start_date)
34 35 @cached_label_due_date ||= l(:field_due_date)
35 36 @cached_label_assigned_to ||= l(:field_assigned_to)
36 37 @cached_label_priority ||= l(:field_priority)
37 38
38 39 link_to_issue(issue) + "<br /><br />" +
40 "<strong>#{@cached_label_status}</strong>: #{issue.status.name}<br />" +
39 41 "<strong>#{@cached_label_start_date}</strong>: #{format_date(issue.start_date)}<br />" +
40 42 "<strong>#{@cached_label_due_date}</strong>: #{format_date(issue.due_date)}<br />" +
41 43 "<strong>#{@cached_label_assigned_to}</strong>: #{issue.assigned_to}<br />" +
General Comments 0
You need to be logged in to leave comments. Login now