From 33d78d605d0b6582512b5bca24c087730635e928 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Lang Date: Sat, 19 Nov 2016 10:04:58 +0000 Subject: [PATCH] View progress bar of related issues (#3425). git-svn-id: http://svn.redmine.org/redmine/trunk@15982 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- app/helpers/issues_helper.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/app/helpers/issues_helper.rb b/app/helpers/issues_helper.rb index eaa42f9de..15b4587d7 100644 --- a/app/helpers/issues_helper.rb +++ b/app/helpers/issues_helper.rb @@ -129,6 +129,7 @@ module IssuesHelper content_tag('td', other_issue.status, :class => 'status') + content_tag('td', other_issue.start_date, :class => 'start_date') + content_tag('td', other_issue.due_date, :class => 'due_date') + + content_tag('td', other_issue.disabled_core_fields.include?('done_ratio') ? '' : progress_bar(other_issue.done_ratio), :class=> 'done_ratio') + content_tag('td', link, :class => 'buttons'), :id => "relation-#{relation.id}", :class => css)