diff options
Diffstat (limited to 'test_index.php')
-rw-r--r-- | test_index.php | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/test_index.php b/test_index.php index 858d0c3..87100b5 100644 --- a/test_index.php +++ b/test_index.php @@ -347,20 +347,12 @@ if ($total > 0) { <div id="status-chart"></div> <div id="packagers-chart"></div>'; - // Packagers stats - $s .= '<table style="width: 70%; margin: 2em 0 2em 80px;"><caption>Packagers</caption><tr><th>User</th><th>Packages</th></tr>'; - arsort($users); - foreach ($users as $k => $v) { - $s .= sprintf('<tr><td><a href="/?user=%s">%s</a></td><td>%d</td></tr>', - $k, $k, $v); - } $s .= sprintf('<table style="width: 80%;"><tr><td>Total time</td><td>%s hours</td></tr> <tr><td>Average</td><td>%s minutes</td></tr> <tr><td>Builds count</td><td>%s</td></tr></table>', round($buildtime_total / 60, 2), $buildtime_avg, $buildtime_cnt); - $s .= '</table><br /><br />'; $s .= '<div id="buildtime-chart"></div> |