1<?php if (! $this->compact): ?>
2<div class="controls">
3    <?= $this->tabs->showOnlyCloseButton(); ?>
4</div>
5<?php endif ?>
6<div class="content">
7    <h1><?= $title; ?></h1>
8    <?php if ((bool) $programStatus->notifications_enabled === false): ?>
9    <div>
10        <?= $this->translate('Host and service notifications are already disabled.') ?>
11        <?php if ($this->programStatus->disable_notif_expire_time): ?>
12            <?= sprintf(
13                $this->translate('Notifications will be re-enabled in <strong>%s</strong>.'),
14                $this->timeUntil($this->programStatus->disable_notif_expire_time)); ?>
15        <?php endif; ?>
16    </div>
17    <?php else: ?>
18    <?= $form; ?>
19    <?php endif ?>
20</div>
21