mirror of
https://github.com/Icinga/icingaweb2.git
synced 2026-02-21 08:50:26 -05:00
15 lines
458 B
PHTML
15 lines
458 B
PHTML
<?php use Icinga\Data\Filter\Filter; ?>
|
|
|
|
<div class="controls separated">
|
|
<?php if (! $this->compact): ?>
|
|
<?= $this->tabs ?>
|
|
<?php endif ?>
|
|
<?= $this->render('partials/object/host-header.phtml') ?>
|
|
<?php
|
|
$this->stats = $object->stats;
|
|
$this->baseFilter = Filter::where('host', $object->host_name);
|
|
echo $this->render('list/components/servicesummary.phtml');
|
|
?>
|
|
</div>
|
|
|
|
<?= $this->render('partials/object/detail-content.phtml') ?>
|