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>
|
|
|
|
We tried to load a dashboard configuration with no success.
|
|
|
|
Please have look that the configuration does exist:
|
|
|
|
|
|
|
|
<code>
|
|
|
|
<?= $this->configPath ?>.ini
|
|
|
|
</code>
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
<?php endif; ?>
|