summaryrefslogtreecommitdiffstats
path: root/usr/local/www
diff options
context:
space:
mode:
Diffstat (limited to 'usr/local/www')
-rwxr-xr-xusr/local/www/status_gateways.php2
-rw-r--r--usr/local/www/status_openvpn.php6
-rwxr-xr-xusr/local/www/status_services.php2
-rw-r--r--usr/local/www/widgets/widgets/services_status.widget.php2
4 files changed, 12 insertions, 0 deletions
diff --git a/usr/local/www/status_gateways.php b/usr/local/www/status_gateways.php
index e7154a8..2cadc2f 100755
--- a/usr/local/www/status_gateways.php
+++ b/usr/local/www/status_gateways.php
@@ -149,6 +149,8 @@ include("head.inc");
<?php } ?>
</table>
</div>
+ </td>
+ </tr>
</table>
<?php include("fend.inc"); ?>
diff --git a/usr/local/www/status_openvpn.php b/usr/local/www/status_openvpn.php
index 4956821..e5ac31b 100644
--- a/usr/local/www/status_openvpn.php
+++ b/usr/local/www/status_openvpn.php
@@ -195,7 +195,9 @@ include("head.inc"); ?>
<table>
<tr>
<?php $ssvc = find_service_by_openvpn_vpnid($server['vpnid']); ?>
+ <td class="listr" align="center">
<?= get_service_status_icon($ssvc, true, true); ?>
+ </td>
<td><?= get_service_control_links($ssvc, true); ?></td>
</tr>
</table>
@@ -308,7 +310,9 @@ include("head.inc"); ?>
<table>
<tr>
<?php $ssvc = find_service_by_openvpn_vpnid($sk_server['vpnid']); ?>
+ <td class="listr" align="center">
<?= get_service_status_icon($ssvc, false, true); ?>
+ </td>
<td><?= get_service_control_links($ssvc, true); ?></td>
</tr>
</table>
@@ -371,7 +375,9 @@ include("head.inc"); ?>
<table>
<tr>
<?php $ssvc = find_service_by_openvpn_vpnid($client['vpnid']); ?>
+ <td class="listr" align="center">
<?= get_service_status_icon($ssvc, false, true); ?>
+ </td>
<td><?= get_service_control_links($ssvc, true); ?></td>
</tr>
</table>
diff --git a/usr/local/www/status_services.php b/usr/local/www/status_services.php
index 1f1fee5..731b79b 100755
--- a/usr/local/www/status_services.php
+++ b/usr/local/www/status_services.php
@@ -95,7 +95,9 @@ if (count($services) > 0) {
$service['description'] = get_pkg_descr($service['name']);
echo '<tr><td class="listlr" width="20%">' . $service['name'] . '</td>' . "\n";
echo '<td class="listr" width="55%">' . $service['description'] . '</td>' . "\n";
+ echo '<td class="listr" align="center">' . "\n";
echo get_service_status_icon($service, true, true);
+ echo "</td>\n";
echo '<td valign="middle" class="list nowrap">';
echo get_service_control_links($service);
$scut = get_shortcut_by_service_name($service['name']);
diff --git a/usr/local/www/widgets/widgets/services_status.widget.php b/usr/local/www/widgets/widgets/services_status.widget.php
index 9ae8696..ee8d521 100644
--- a/usr/local/www/widgets/widgets/services_status.widget.php
+++ b/usr/local/www/widgets/widgets/services_status.widget.php
@@ -75,7 +75,9 @@ if (count($services) > 0) {
$service_desc = explode(".",$service['description']);
echo '<tr><td class="listlr">' . $service['name'] . '</td>' . "\n";
echo '<td class="listr">' . $service_desc[0] . '</td>' . "\n";
+ echo '<td class="listr" align="center">' . "\n";
echo get_service_status_icon($service, false, true);
+ echo "</td>\n";
echo '<td valign="middle" class="list nowrap">';
echo get_service_control_links($service);
echo "</td></tr>\n";
OpenPOWER on IntegriCloud