2014-03-06 14:47:26 +01:00
|
|
|
<div class="controls">
|
|
|
|
<?= $this->tabs ?>
|
|
|
|
</div>
|
|
|
|
<div class="content">
|
2013-08-01 15:34:14 +02:00
|
|
|
<?php if (isset($this->objects) && !empty($this->objects) && isset($this->objects[0]->host_name)): ?>
|
2014-03-06 14:47:26 +01:00
|
|
|
<table class="objectlist">
|
2013-08-21 16:45:10 +02:00
|
|
|
<thead>
|
|
|
|
<tr>
|
2014-03-06 14:47:26 +01:00
|
|
|
<th><?= $this->img('img/icons/host.png') ?> Host</th>
|
|
|
|
<th><?= $this->img('img/icons/service.png') ?> Service</th>
|
2013-08-21 16:45:10 +02:00
|
|
|
</tr>
|
|
|
|
</thead>
|
2013-08-01 15:34:14 +02:00
|
|
|
<tbody>
|
|
|
|
<?php foreach ($this->objects as $object): ?>
|
2013-08-21 16:45:10 +02:00
|
|
|
<tr>
|
|
|
|
<td><?= $object->host_name; ?></td>
|
2014-03-06 14:47:26 +01:00
|
|
|
<td><?= (isset($object->service_description) ? $object->service_description : '') ?></td>
|
2013-08-21 16:45:10 +02:00
|
|
|
</tr>
|
2013-08-01 15:34:14 +02:00
|
|
|
<?php endforeach; ?>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
|
2014-03-06 14:47:26 +01:00
|
|
|
<?php endif ?>
|
|
|
|
<?= $this->form ?>
|
2013-08-01 15:34:14 +02:00
|
|
|
</div>
|