mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-05-28 02:20:10 +02:00
Store messages in the current user session to be able to fetch messages from other controllers, so that the use can be redirected back to the index, instead of staying in the original action refs #5100
14 lines
418 B
PHTML
14 lines
418 B
PHTML
|
|
<?php if (isset($this->name)): ?>
|
|
<h4><i class="icinga-icon-edit"></i> } Edit Instance Configuration for "<?= $this->escape($this->name) ?>"</h4>
|
|
<?php else: ?>
|
|
<h4><i class="icinga-icon-create"></i> Configure New Icinga Instance</h4>
|
|
<?php endif; ?>
|
|
|
|
<?php if ($this->error): ?>
|
|
<div class="alert alert-danger">
|
|
<?= $this->escape($this->error); ?>
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<?= $this->form; ?> |