summaryrefslogtreecommitdiffstats
path: root/application/views/scripts/service/show.phtml
blob: 205b3f7ee291d6dd59ef20ec8cc7f5843a7c2656 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?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 restricted">
    <h1><?= $this->escape($this->translate('Access Denied')) ?></h1>
    <p><?= $this->escape(sprintf($this->translate('You are lacking permission to access service "%s" on host "%s"'), $service, $host)) ?></p>
    <a href="#" class="close-container-control action-link"><?= $this->icon('cancel') ?><?= $this->translate('Hide this message') ?></a>
</div>