22 lines
546 B
PHTML
22 lines
546 B
PHTML
<?php
|
|
$this->is_service = false;
|
|
$this->hostquery = implode($this->hostnames, ',');
|
|
$this->target = array(
|
|
'host' => $this->hostquery
|
|
);
|
|
?>
|
|
|
|
<div class="panel panel-default">
|
|
<div class="panel panel-heading">
|
|
<h1> Hosts </h1>
|
|
</div>
|
|
|
|
<div class="panel panel-body">
|
|
<?= $this->render('multi/components/summary.phtml'); ?>
|
|
</div>
|
|
</div>
|
|
|
|
<?= $this->render('multi/components/downtimes.phtml'); ?>
|
|
<?= $this->render('multi/components/comments.phtml'); ?>
|
|
<?= $this->render('multi/components/configuration.phtml'); ?>
|