2013-08-12 15:58:26 +02:00
|
|
|
<?= $this->tabs->render($this); ?>
|
|
|
|
|
2013-08-28 13:31:18 +02:00
|
|
|
<?php if (isset($this->successMessage)) : ?>
|
2013-08-19 20:00:55 +02:00
|
|
|
<div class="alert alert-success">
|
2013-08-28 13:31:18 +02:00
|
|
|
<h4>{{SUCCESS_ICON}} <?= $this->successMessage ?></h4>
|
2013-08-19 20:00:55 +02:00
|
|
|
</div>
|
|
|
|
<?php endif; ?>
|
|
|
|
|
|
|
|
<?php if (isset($this->exceptionMessage)): ?>
|
|
|
|
<div class="alert alert-danger">
|
2013-08-21 16:12:06 +02:00
|
|
|
<h4>Could not update preferences due to an internal exception (<?= $this->exceptionMessage ?>)</h4>
|
2013-08-19 20:00:55 +02:00
|
|
|
</div>
|
|
|
|
<?php endif; ?>
|
|
|
|
|
|
|
|
<?= $this->form ?>
|