diff --git a/html/includes/hostbox-basic.inc.php b/html/includes/hostbox-basic.inc.php
index e4bd2b991..3a8d5a208 100644
--- a/html/includes/hostbox-basic.inc.php
+++ b/html/includes/hostbox-basic.inc.php
@@ -28,9 +28,16 @@ $device['os_text'] = $config['os'][$device['os']]['text'];
echo('
+ |
+ ' . $image . ' |
' . generate_device_link($device) . ' | '
);
+echo('');
+if ($port_count) { echo(' '.$port_count); }
+echo(' ');
+if ($sensor_count) { echo(' '.$sensor_count); }
+echo(' | ');
echo(' ' . $device['hardware'] . ' ' . $device['features'] . ' | ');
echo(' ' . $device['os_text'] . ' ' . $device['version'] . ' | ');
echo(' ' . formatUptime($device['uptime'], 'short') . ' ');
|