This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
khosb/modules/adsl/views/service/admin/adslstat.php
2013-10-11 11:00:59 +11:00

36 lines
969 B
PHP

<table class="table table-striped table-condensed table-hover">
<thead>
<tr>
<th>Speed</th>
<th>#</th>
<th><small>%</small></th>
<?php foreach ($traffic as $i) : ?>
<th><?php echo $i; ?></th>
<th><small>%</small></th>
<?php endforeach ?>
<th>Other</th>
<th><small>%</small></th>
</tr>
</thead>
<tbody>
<?php foreach ($stats as $speed => $details) : ?>
<tr>
<td><?php echo $speed; ?></td>
<td><?php echo $details['c']; ?></td>
<td><small><?php printf('%2.1f',$details['c']/$ts*100); ?></small></td>
<?php foreach ($traffic as $i) : ?>
<td><?php echo $c=isset($details['d'][$i]) ? $details['d'][$i] : 0; ?></td>
<td><small><?php printf('%2.1f',$c/$details['c']*100); ?></small></td>
<?php endforeach ?>
<td><?php echo $c=isset($details['d'][0]) ? $details['d'][0] : 0; ?></td>
<td><small><?php printf('%2.1f',$c/$details['c']*100); ?></small></td>
</tr>
<?php endforeach ?>
</tbody>
</table>