icingaweb2/application/views/scripts/dashboard/index.phtml

22 lines
600 B
PHTML
Raw Normal View History

2014-02-18 19:16:03 +01:00
<div class="controls">
<?= $this->tabs ?>
</div>
<?php if ($this->dashboard): ?>
<div class="dashboard content">
<?= $this->dashboard ?>
</div>
<?php else: ?>
<div class="content">
<h1>No dashboard configuration found!</h1>
<p>
<?=
$this->translate('We tried to load a dashboard configuration with no success.'
. ' Please have look that the configuration does exist:');
?>
<code>
<?= $this->escape($this->configPath) ?>.ini
</code>
</p>
</div>
<?php endif; ?>