diff --git a/module/execution/view/all.html.php b/module/execution/view/all.html.php index 2d90badfc7..0b6d22bcab 100644 --- a/module/execution/view/all.html.php +++ b/module/execution/view/all.html.php @@ -95,8 +95,8 @@ td.hours {text-align: right; overflow: hidden; text-overflow: ellipsis; white-sp '>execution->typeList[$execution->type]?> delay)) echo "{$lang->execution->delayed} "; echo !empty($execution->children) ? $execution->name : html::a($this->createLink('execution', 'task', 'execution=' . $execution->id), $execution->name); + if(isset($execution->delay)) echo "{$lang->execution->delayed} "; ?> children)):?> diff --git a/module/project/model.php b/module/project/model.php index 7e3f2374c6..b34dcf687e 100644 --- a/module/project/model.php +++ b/module/project/model.php @@ -1400,6 +1400,7 @@ class projectModel extends model if($project->model === 'scrum') echo "{$this->lang->project->scrum} "; } echo html::a($projectLink, $project->name); + if(isset($project->delay)) echo "{$this->lang->project->statusList['delay']}"; break; case 'PM': $user = $this->loadModel('user')->getByID($project->PM, 'account');