blob: 692d3e4ee78b12287969c7a59e9e5df74f214651 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?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') ?>
|