2013-08-20 15:45:04 +02:00
|
|
|
<?= $this->tabs->render($this); ?>
|
|
|
|
<?php if ($this->name): ?>
|
2013-08-22 17:17:58 +02:00
|
|
|
<h4><i>{{EDIT_ICON}} Edit Backend "<?= $this->escape($this->name) ?>"</h4>
|
2013-08-20 15:45:04 +02:00
|
|
|
<?php else: ?>
|
2013-08-22 17:17:58 +02:00
|
|
|
<h4>{{CREATE_ICON}} 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; ?>
|