2015-09-24 16:10:20 +02:00
|
|
|
<div class="content" data-base-target="_next">
|
|
|
|
<?= $this->render('show/components/output.phtml') ?>
|
|
|
|
<?= $this->render('show/components/grapher.phtml') ?>
|
2017-01-24 16:44:00 +01:00
|
|
|
<?= $this->render('show/components/extensions.phtml') ?>
|
2015-09-24 16:10:20 +02:00
|
|
|
|
|
|
|
<h2><?= $this->translate('Problem handling') ?></h2>
|
|
|
|
<table class="name-value-table">
|
|
|
|
<tbody>
|
|
|
|
<?= $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') ?>
|
|
|
|
<?php if ($object->type === 'service'): ?>
|
|
|
|
<?= $this->render('show/components/servicegroups.phtml') ?>
|
|
|
|
<?php else: ?>
|
|
|
|
<?= $this->render('show/components/hostgroups.phtml') ?>
|
|
|
|
<?php endif ?>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
|
2015-09-25 10:59:38 +02:00
|
|
|
<?= $this->render('show/components/perfdata.phtml') ?>
|
|
|
|
|
2015-09-24 16:10:20 +02:00
|
|
|
<h2><?= $this->translate('Notifications') ?></h2>
|
|
|
|
<table class="name-value-table">
|
|
|
|
<tbody>
|
|
|
|
<?= $this->render('show/components/notifications.phtml') ?>
|
|
|
|
<?= $this->render('show/components/contacts.phtml') ?>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
|
|
|
|
<h2><?= $this->translate('Check execution') ?></h2>
|
|
|
|
<table class="name-value-table">
|
|
|
|
<tbody>
|
|
|
|
<?= $this->render('show/components/command.phtml') ?>
|
|
|
|
<?= $this->render('show/components/checksource.phtml') ?>
|
2017-12-19 17:57:04 +01:00
|
|
|
<?= $this->render('show/components/reachable.phtml') ?>
|
2015-09-24 16:10:20 +02:00
|
|
|
<?= $this->render('show/components/checkstatistics.phtml') ?>
|
|
|
|
<?= $this->render('show/components/checktimeperiod.phtml') ?>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
|
|
|
|
<?php if (! empty($object->customvars)): ?>
|
2015-09-25 10:59:38 +02:00
|
|
|
<h2><?= $this->translate('Custom Variables') ?></h2>
|
2019-07-18 14:10:40 +02:00
|
|
|
<table id="<?= $object->type ?>-customvars" class="name-value-table collapsible" data-visible-height="200">
|
2015-09-25 10:59:38 +02:00
|
|
|
<tbody>
|
|
|
|
<?= $this->render('show/components/customvars.phtml') ?>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2015-09-24 16:10:20 +02:00
|
|
|
<?php endif ?>
|
|
|
|
|
|
|
|
<?= $this->render('show/components/flags.phtml') ?>
|
|
|
|
</div>
|