summaryrefslogtreecommitdiffstats
path: root/modules/monitoring/application/views/scripts/host/show.phtml
blob: 72f5af4a81c11e65b8792936f1fab8eac9b9f65d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php use Icinga\Data\Filter\Filter; ?>
<div class="controls 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');
?>
    <?= $this->render('partials/object/quick-actions.phtml') ?>
</div>
<?= $this->render('partials/object/detail-content.phtml') ?>