##// END OF EJS Templates
Add Issue Status to the tooltip. #6169...
Eric Davis -
r3838:782a5f121881
parent child
Show More
@@ -30,12 +30,14 module IssuesHelper
30 end
30 end
31
31
32 def render_issue_tooltip(issue)
32 def render_issue_tooltip(issue)
33 @cached_label_status ||= l(:field_status)
33 @cached_label_start_date ||= l(:field_start_date)
34 @cached_label_start_date ||= l(:field_start_date)
34 @cached_label_due_date ||= l(:field_due_date)
35 @cached_label_due_date ||= l(:field_due_date)
35 @cached_label_assigned_to ||= l(:field_assigned_to)
36 @cached_label_assigned_to ||= l(:field_assigned_to)
36 @cached_label_priority ||= l(:field_priority)
37 @cached_label_priority ||= l(:field_priority)
37
38
38 link_to_issue(issue) + "<br /><br />" +
39 link_to_issue(issue) + "<br /><br />" +
40 "<strong>#{@cached_label_status}</strong>: #{issue.status.name}<br />" +
39 "<strong>#{@cached_label_start_date}</strong>: #{format_date(issue.start_date)}<br />" +
41 "<strong>#{@cached_label_start_date}</strong>: #{format_date(issue.start_date)}<br />" +
40 "<strong>#{@cached_label_due_date}</strong>: #{format_date(issue.due_date)}<br />" +
42 "<strong>#{@cached_label_due_date}</strong>: #{format_date(issue.due_date)}<br />" +
41 "<strong>#{@cached_label_assigned_to}</strong>: #{issue.assigned_to}<br />" +
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