2014-02-18 19:16:03 +01:00
|
|
|
<div class="controls">
|
|
|
|
<?= $this->tabs ?>
|
|
|
|
</div>
|
2014-06-05 15:20:54 +02:00
|
|
|
<?php if ($this->dashboard): ?>
|
|
|
|
<div class="dashboard content">
|
|
|
|
<?= $this->dashboard ?>
|
|
|
|
</div>
|
|
|
|
<?php else: ?>
|
|
|
|
<div class="content">
|
2014-08-22 15:39:35 +02:00
|
|
|
<h1><?= $this->escape($this->translate('Welcome to Icinga Web!')) ?></h1>
|
|
|
|
<p><?= sprintf(
|
|
|
|
$this->escape($this->translate('Currently there is no dashlet available. This might change once you enabled some of the available %s.')),
|
|
|
|
$this->qlink($this->translate('modules'), 'config/modules')
|
|
|
|
) ?></p>
|
2014-06-05 15:20:54 +02:00
|
|
|
</div>
|
2014-08-22 15:39:35 +02:00
|
|
|
<?php endif ?>
|