44 lines
2.0 KiB
PHTML
44 lines
2.0 KiB
PHTML
<?php use Icinga\Data\Filter\Filter; ?>
|
|
|
|
<div class="controls separated">
|
|
<?php if (! $this->compact): ?>
|
|
<?= $this->tabs; ?>
|
|
<?php endif ?>
|
|
<?= $this->render('partials/host/object-header.phtml') ?>
|
|
<h3 class="tinystatesummary" <?= $this->compact ? ' data-base-target="col1"' : ''; ?>>
|
|
<?php
|
|
$this->stats = $object->stats;
|
|
$this->baseFilter = Filter::where('host', $object->host_name);
|
|
echo $this->render('list/components/servicesummary.phtml');
|
|
?>
|
|
</h3>
|
|
</div>
|
|
<div class="content" data-base-target="_next">
|
|
<?= $this->render('show/components/output.phtml') ?>
|
|
<?= $this->render('show/components/grapher.phtml') ?>
|
|
|
|
<table class="avp newsection">
|
|
<tbody>
|
|
<tr><td colspan="2"><h2><?= $this->translate('Problem handling') ?></h2></td></tr>
|
|
<?= $this->render('show/components/acknowledgement.phtml') ?>
|
|
<?= $this->render('show/components/comments.phtml') ?>
|
|
<?= $this->render('show/components/downtime.phtml') ?>
|
|
<?= $this->render('show/components/notes.phtml') ?>
|
|
<?= $this->render('show/components/actions.phtml') ?>
|
|
<?= $this->render('show/components/flapping.phtml') ?>
|
|
<?= $this->render('show/components/hostgroups.phtml') ?>
|
|
<?= $this->render('show/components/perfdata.phtml') ?>
|
|
<tr><td colspan="2"><h2><?= $this->translate('Notifications') ?></h2></td></tr>
|
|
<?= $this->render('show/components/notifications.phtml') ?>
|
|
<?= $this->render('show/components/contacts.phtml') ?>
|
|
<tr><td colspan="2"><h2><?= $this->translate('Check execution') ?></h2></td></tr>
|
|
<?= $this->render('show/components/command.phtml') ?>
|
|
<?= $this->render('show/components/checksource.phtml') ?>
|
|
<?= $this->render('show/components/checkstatistics.phtml') ?>
|
|
<?= $this->render('show/components/checktimeperiod.phtml') ?>
|
|
<?= $this->render('show/components/customvars.phtml') ?>
|
|
<?= $this->render('show/components/flags.phtml') ?>
|
|
</tbody>
|
|
</table>
|
|
</div>
|