monitoring: Remove h3 from object-command-form

refs #5543
This commit is contained in:
Eric Lippmann 2015-09-30 10:45:17 +02:00
parent 4b8bab5e8e
commit a874b1ef3c
1 changed files with 6 additions and 8 deletions

View File

@ -6,13 +6,11 @@
<?php endif ?> <?php endif ?>
<?php if ($object->getType() === $object::TYPE_HOST): ?> <?php if ($object->getType() === $object::TYPE_HOST): ?>
<?= $this->render('partials/host/object-header.phtml'); ?> <?= $this->render('partials/host/object-header.phtml'); ?>
<h3 class="tinystatesummary" <?= $this->compact ? ' data-base-target="col1"' : ''; ?>"> <?php
<?php $this->baseFilter = Filter::where('host', $object->host_name);
$this->baseFilter = Filter::where('host', $object->host_name); $this->stats = $object->stats;
$this->stats = $object->stats; echo $this->render('list/components/servicesummary.phtml');
echo $this->render('list/components/servicesummary.phtml'); ?>
?>
</h3>
<?php else: ?> <?php else: ?>
<?= $this->render('partials/service/object-header.phtml'); ?> <?= $this->render('partials/service/object-header.phtml'); ?>
<hr class="command-separator"> <hr class="command-separator">
@ -20,4 +18,4 @@
</div> </div>
<div class="content object-command"> <div class="content object-command">
<?= $form; ?> <?= $form; ?>
</div> </div>