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">
|
|
|
|
<h1>No dashboard configuration found!</h1>
|
|
|
|
<p>
|
2014-06-05 16:07:40 +02:00
|
|
|
<?=
|
|
|
|
$this->translate('We tried to load a dashboard configuration with no success.'
|
|
|
|
. ' Please have look that the configuration does exist:');
|
|
|
|
?>
|
2014-06-05 15:20:54 +02:00
|
|
|
|
|
|
|
<code>
|
2014-06-05 16:07:40 +02:00
|
|
|
<?= $this->escape($this->configPath) ?>.ini
|
2014-06-05 15:20:54 +02:00
|
|
|
</code>
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
<?php endif; ?>
|