2013-08-20 15:45:04 +02:00
|
|
|
<?= $this->tabs->render($this); ?>
|
|
|
|
<?php if ($this->name): ?>
|
2013-08-20 18:08:56 +02:00
|
|
|
<h4>Edit Backend "<?= $this->escape($this->name) ?>"</h4>
|
2013-08-20 15:45:04 +02:00
|
|
|
<?php else: ?>
|
2013-08-20 18:08:56 +02:00
|
|
|
<h4>Create New Backend</h4>
|
2013-08-20 15:45:04 +02:00
|
|
|
<?php endif; ?>
|
|
|
|
|
|
|
|
<?php if ($this->error): ?>
|
|
|
|
<div class="alert alert-danger">
|
|
|
|
<?= $this->escape($this->error); ?>
|
|
|
|
</div>
|
|
|
|
<?php endif; ?>
|
|
|
|
|
|
|
|
<?= $this->form; ?>
|