mirror of
https://github.com/Icinga/icingaweb2-module-businessprocess.git
synced 2025-12-24 08:39:34 -05:00
20 lines
743 B
PHTML
20 lines
743 B
PHTML
<div class="controls">
|
|
<?= $this->tabs ?>
|
|
<h1><?= $this->escape($this->title) ?>
|
|
<a href="<?= $this->url()->with('mode', 'toplevel') ?>" title="<?= $this->escape('Switch to toplevel view') ?>"><?= $this->icon('dashboard') ?></a>
|
|
<?= $this->render('simulationlink.phtml') ?>
|
|
<?= $this->render('editlink.phtml') ?>
|
|
</h1>
|
|
</div>
|
|
|
|
<div class="content" data-base-target="_next">
|
|
<form method="post" action="<?= $this->url()->without('process') ?>" data-base-target="_self">
|
|
<?= $this->formSelect('processName', $this->processName, array('class' => 'autosubmit'), $this->processList) ?>
|
|
</form>
|
|
<?= $this->bp->renderHtml($this) ?>
|
|
<!--<pre>
|
|
<?= $this->bp->toLegacyConfigString() ?>
|
|
</pre>-->
|
|
<?= $this->render('warnings.phtml') ?>
|
|
</div>
|
|
|