icingaweb2/modules/monitoring/application/views/scripts/tactical/index.phtml

18 lines
701 B
PHTML
Raw Normal View History

2014-03-07 13:15:26 +01:00
<?php if (!$this->compact): ?>
<div class="controls">
<?= $this->tabs ?>
</div>
<?php endif ?>
<div class="content tactical">
2014-03-08 15:01:00 +01:00
<div class="boxview" data-base-target="_next">
2014-03-10 15:09:53 +01:00
<?php if ($this->statusSummary->hosts_down || $this->statusSummary->hosts_unreachable): ?>
<?= $this->render('tactical/components/problem_hosts.phtml'); ?>
2014-03-10 15:09:53 +01:00
<?php endif ?>
<?php if ($this->statusSummary->hosts_up || $this->statusSummary->hosts_pending): ?>
<?= $this->render('tactical/components/ok_hosts.phtml'); ?>
2014-03-10 15:09:53 +01:00
<?php endif ?>
<?= $this->render('tactical/components/hostservicechecks.phtml'); ?>
<?= $this->render('tactical/components/monitoringfeatures.phtml'); ?>
</div>
</div>