mirror of
https://github.com/Icinga/icingaweb2-module-businessprocess.git
synced 2026-01-01 19:29:34 -05:00
17 lines
460 B
PHTML
17 lines
460 B
PHTML
<?php
|
|
/** @var \Icinga\Web\View $this */
|
|
/** @var \Icinga\Web\Widget\Tabs $tabs */
|
|
/** @var string $host */
|
|
/** @var string $service */
|
|
?>
|
|
<div class="controls">
|
|
<?= $tabs->showOnlyCloseButton() ?>
|
|
</div>
|
|
<div class="content">
|
|
<h1><?= $this->escape($this->translate('Access denied')) ?></h1>
|
|
<p><?php printf(
|
|
$this->escape($this->translate('Access to service "%s" of host "%s" denied')),
|
|
$service,
|
|
$host
|
|
) ?></p>
|
|
</div>
|