* Finish task #37099.
This commit is contained in:
@@ -1307,13 +1307,13 @@ class projectModel extends model
|
||||
echo $project->teamCount;
|
||||
break;
|
||||
case 'estimate':
|
||||
echo $project->hours->totalEstimate . ' ' . $this->lang->execution->workHourUnit;
|
||||
echo $project->hours->totalEstimate . $this->lang->execution->workHourUnit;
|
||||
break;
|
||||
case 'consume':
|
||||
echo $project->hours->totalConsumed . ' ' . $this->lang->execution->workHourUnit;
|
||||
echo $project->hours->totalConsumed . $this->lang->execution->workHourUnit;
|
||||
break;
|
||||
case 'surplus':
|
||||
echo $project->hours->totalLeft . ' ' . $this->lang->execution->workHourUnit;
|
||||
echo $project->hours->totalLeft . $this->lang->execution->workHourUnit;
|
||||
break;
|
||||
case 'progress':
|
||||
echo "<div class='progress-pie' data-doughnut-size='90' data-color='#00da88' data-value='{$project->hours->progress}' data-width='24' data-height='24' data-back-color='#e8edf3'><div class='progress-info'>{$project->hours->progress}</div></div>";
|
||||
|
||||
Reference in New Issue
Block a user