mirror of
https://github.com/Icinga/icingaweb2-module-businessprocess.git
synced 2025-12-24 16:49:34 -05:00
29 lines
1 KiB
PHTML
29 lines
1 KiB
PHTML
<?php if (! $this->compact): ?>
|
|
<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') ?>
|
|
<?= $this->render('downloadlink.phtml') ?>
|
|
</h1>
|
|
</div>
|
|
<?php endif ?>
|
|
|
|
<div class="content<?= $this->compact ? ' compact' : '' ?>" data-base-target="_next">
|
|
<?php if (! $this->compact): ?>
|
|
<form method="post" action="<?= $this->url()->without('process') ?>" data-base-target="_self">
|
|
<?= $this->formSelect('processName', $this->processName, array('class' => 'autosubmit'), $this->processList) ?>
|
|
</form>
|
|
<?php endif ?>
|
|
<?php if (! empty($this->errors)): ?>
|
|
<ul class="error">
|
|
<?php foreach ($this->errors as $error): ?>
|
|
<li><?= $this->escape($error) ?></li>
|
|
<?php endforeach ?>
|
|
</ul>
|
|
<?php endif ?>
|
|
<?= $this->bp->renderHtml($this) ?>
|
|
<?= $this->render('warnings.phtml') ?>
|
|
</div>
|
|
|