summaryrefslogtreecommitdiffstats
path: root/application/views/scripts/host/show.phtml
blob: 413baf2a5eb000e37fe184d6a404d2ec7a0e09b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php
/** @var \Icinga\Web\View $this */
/** @var \Icinga\Web\Widget\Tabs $tabs */
/** @var string $host */
?>
<div class="controls">
    <?= $tabs->showOnlyCloseButton() ?>
</div>
<div class="content restricted">
    <h1><?= $this->translate('Access Denied') ?></h1>
    <p><?= sprintf($this->translate('You are lacking permission to access host "%s".'), $this->escape($host)) ?></p>
    <a href="#" class="close-container-control action-link"><?= $this->icon('cancel') ?><?= $this->translate('Hide this message') ?></a>
</div>