icingaweb2/modules/monitoring/application/views/scripts/multi/components/comments.phtml

62 lines
1.7 KiB
PHTML
Raw Normal View History

<div>
<div class="panel-heading">
<span> <b> Comments </b> </span>
2013-10-23 12:58:15 +02:00
<div class="pull-right">
<a rel="tooltip" title="Create new comments for all selected hosts or services" href="<?=
$this->href(
'monitoring/command/addcomment',
$this->target
);
?>" class="btn-common btn-small button">
2014-03-07 10:41:59 +01:00
<?= $this->icon('comment.png') ?>
2013-10-23 12:58:15 +02:00
</a>
<a rel="tooltip" title="Send custom notifications for all selected hosts or services" href="<?=
$this->href(
'monitoring/command/sendcustomnotification',
$this->target
);
?>" class="btn-common btn-small button">
2014-03-07 10:41:59 +01:00
<?= $this->icon('notification.png') ?>"></i>
2013-10-23 12:58:15 +02:00
</a>
</div>
</div>
<hr class="separator">
<div class="panel-body">
<div class="panel-row">
<?php if (count($comments) > 0) { ?>
<a href=" <?=
$this->href(
'monitoring/list/comments',
array(
'comment_id' => implode(',', $this->comments)
)
);
?>">
2013-10-23 12:58:15 +02:00
There are <?= count($comments);?> comments assigned to the selected items.
</a>
<a href="<?=
$this->href(
'monitoring/command/removecomment',
$this->target
);
?>" class="button btn-common btn-small input-sm pull-right">
2014-03-07 10:41:59 +01:00
<?= $this->icon('remove.png') ?>"></i>
</a>
<?php } else { ?>
2013-10-23 12:58:15 +02:00
There are 0 comments assigned to the selected items.
<?php } ?>
</div>
2013-10-23 12:58:15 +02:00
<a rel="tooltip" title="Delay the noficiations on all selected hosts or services" href="<?=
$this->href(
'monitoring/command/delaynotification',
$this->target
);
2013-10-23 12:58:15 +02:00
?>" class="button btn-cta btn-common btn-half-wide">
Delay Notifications
</a>
</div>
</div>