diff --git a/app/helpers/issues_helper.rb b/app/helpers/issues_helper.rb index c6b8cb6dd..15f97e328 100644 --- a/app/helpers/issues_helper.rb +++ b/app/helpers/issues_helper.rb @@ -108,6 +108,8 @@ module IssuesHelper content_tag('td', check_box_tag("ids[]", child.id, false, :id => nil), :class => 'checkbox') + content_tag('td', link_to_issue(child, :project => (issue.project_id != child.project_id)), :class => 'subject', :style => 'width: 50%') + content_tag('td', h(child.status), :class => 'status') + + content_tag('td', format_date(child.start_date), :class => 'start_date') + + content_tag('td', format_date(child.due_date), :class => 'due_date') + content_tag('td', link_to_user(child.assigned_to), :class => 'assigned_to') + content_tag('td', child.disabled_core_fields.include?('done_ratio') ? '' : progress_bar(child.done_ratio), :class=> 'done_ratio') + content_tag('td', buttons, :class => 'buttons'), @@ -141,6 +143,7 @@ module IssuesHelper content_tag('td', other_issue.status, :class => 'status') + content_tag('td', format_date(other_issue.start_date), :class => 'start_date') + content_tag('td', format_date(other_issue.due_date), :class => 'due_date') + + content_tag('td', link_to_user(other_issue.assigned_to), :class => 'assigned_to') + content_tag('td', other_issue.disabled_core_fields.include?('done_ratio') ? '' : progress_bar(other_issue.done_ratio), :class=> 'done_ratio') + content_tag('td', buttons, :class => 'buttons'), :id => "relation-#{relation.id}",