icingaweb2/modules/monitoring/application/views/scripts/comments/show.phtml

26 lines
652 B
PHTML
Raw Normal View History

<div class="controls">
<?php if (! $this->compact): ?>
<?= $this->tabs; ?>
<?php endif ?>
<div data-base-target='_next'>
<?= $this->render('partials/comment/comments-header.phtml'); ?>
</div>
</div>
<div class="content multi-commands">
<h3><?= $this->icon('reschedule') ?> <?= $this->translate('Commands') ?> </h3>
<?= $this->qlink(
sprintf(
2015-05-18 14:49:06 +02:00
$this->translate('Remove %d comments'),
count($comments)
),
$removeAllLink,
null,
array(
'icon' => 'trash',
'title' => $this->translate('Remove all selected comments.')
)
) ?>
</div>