mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-07-10 07:24:25 +02:00
Further, eventhistory and detail-history now use the introduced event-history partial. refs #10317
14 lines
344 B
PHTML
14 lines
344 B
PHTML
<?php
|
|
|
|
if (! $this->compact): ?>
|
|
<div class="controls separated">
|
|
<?= $this->tabs ?>
|
|
<?php if ($object->type === 'service') {
|
|
echo $this->render('partials/object/service-header.phtml');
|
|
} else {
|
|
echo $this->render('partials/object/host-header.phtml');
|
|
} ?>
|
|
</div>
|
|
<?php endif ?>
|
|
<?= $this->render('partials/event-history.phtml') ?>
|