icingaweb2-module-businessp.../application/views/scripts/host/show.phtml
Alexander A. Klimov 3985f67fe7 Fix "Host not found" error
refs #147
2019-02-18 13:54:39 +01:00

12 lines
376 B
PHTML

<?php
/** @var \Icinga\Web\View $this */
/** @var \Icinga\Web\Widget\Tabs $tabs */
/** @var string $host */
?>
<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 host "%s" denied')), $host) ?></p>
</div>