$action.getText("bar.progress"): $report.getCompletionPercentage()%
|
#if($summaryBean.getCompletedWidth() != 0)
 |
#end
#if($summaryBean.getIncompleteWidth() != 0)
 |
#end
#if($summaryBean.getOverEstimateWidth() != 0)
 |
#end
|
#set ($timeSpentTot = "$totals.getTimeSpent()")
#set ($totalCurrentEst = "$totals.getTotalCurrentEstimate()")
$action.getText("bar.time.completed", $timeSpentTot, $totalCurrentEst)
|
$action.getText("bar.accuracy"): $report.getAccuracyPercentage()%
|
#if($summaryBean.getEstimateWidth() != 0)
 |
#end
#if($summaryBean.getUnderEstimateWidth() != 0)
 |
#end
|
#if ($totals.onSchedule() == 1)
#set ($param1 = "")
#set ($param2 = "")
#set ($originalEstTot = "$totals.getOriginalEstimate()")
#set ($accuracyTot = "$totals.getAccuracy()")
$action.getText("bar.issues.ahead", $param1, $param2) $action.getText("bar.against.estimate", $originalEstTot, $accuracyTot).
#elseif ($totals.onSchedule() == -1)
#set ($param1 = "")
#set ($param2 = "")
#set ($originalEstTot = "$totals.getOriginalEstimate()")
#set ($accuracyTot = "$totals.getAccuracy()")
$action.getText("bar.issues.behind", $param1, $param2) $action.getText("bar.against.estimate", $originalEstTot, $accuracyTot).
#else
#set ($originalEstTot = "$totals.getOriginalEstimate()")
$action.getText("bar.issues.onschedule", $originalEstTot).
#end
|