mirror of
https://github.com/Icinga/icingaweb2.git
synced 2026-02-26 19:20:23 -05:00
14 lines
No EOL
426 B
PHTML
14 lines
No EOL
426 B
PHTML
<?= $this->tabs->render($this); ?>
|
|
|
|
<h4>{{CREATE_ICON}} Edit Backend "<?= $this->escape($this->name); ?>"</h4>
|
|
|
|
<?php if ($this->errorMessage || $this->form->getErrorMessages()): ?>
|
|
<div class="alert alert-danger">
|
|
<?= $this->escape($this->errorMessage); ?>
|
|
<?php foreach ($this->form->getErrorMessages() as $error): ?>
|
|
<?= $this->escape($error); ?><br/>
|
|
<?php endforeach; ?>
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<?= $this->form ?> |