aboutsummaryrefslogtreecommitdiffstats
path: root/config/rrd-summary
diff options
context:
space:
mode:
Diffstat (limited to 'config/rrd-summary')
-rw-r--r--config/rrd-summary/status_rrd_summary.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/config/rrd-summary/status_rrd_summary.php b/config/rrd-summary/status_rrd_summary.php
index 8906ee55..8e353527 100644
--- a/config/rrd-summary/status_rrd_summary.php
+++ b/config/rrd-summary/status_rrd_summary.php
@@ -45,11 +45,11 @@ function fetch_rrd_summary($rrd, $start, $end, $resolution="3600") {
}
function print_rrd_summary_table($data) { ?>
-<table>
+<table cellspacing="5">
<tr><th>&nbsp;</th><th>Bandwidth</th></tr>
- <tr><td>In</td><td><?php echo $data[0]; ?> MBytes</td></tr>
- <tr><td>Out</td><td><?php echo $data[1]; ?> MBytes</td></tr>
- <tr><td>Total</td><td><?php echo $data[0] + $data[1]; ?> MBytes</td></tr>
+ <tr><td>In</td><td align="right"><?php echo $data[0]; ?> MBytes</td></tr>
+ <tr><td>Out</td><td align="right"><?php echo $data[1]; ?> MBytes</td></tr>
+ <tr><td>Total</td><td align="right"><?php echo $data[0] + $data[1]; ?> MBytes</td></tr>
</table>
<?php
}