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

50 lines
1.7 KiB
PHTML
Raw Normal View History

<div>
<div class="panel-heading">
2013-10-23 12:58:15 +02:00
<b>Downtimes</b>
<a rel="tooltip" title="Schedule downtimes for all selected hosts or services" href="<?=
$this->href(
'monitoring/command/scheduledowntime',
$this->target
);
?>" class="button btn-common btn-small input-sm pull-right">
2014-03-07 10:41:59 +01:00
<?= $this->icon('in_downtime.png') ?>
2013-10-23 12:58:15 +02:00
</a>
</div>
<hr class="separator" >
<div class="panel-body">
<div class="panel-row">
<?php if (count($downtimes) > 0) { ?>
<a href="
<?= $this->href(
'monitoring/list/downtimes',
array()
);?>
">
<?= count($downtimes); ?> Selected items are currently in downtime.
</a>
<a href="<?=
$this->href(
'monitoring/command/removedowntime',
$this->target
);
?>" class="button btn-common btn-small input-sm pull-right">
2014-03-07 10:41:59 +01:00
<?= $this->icon('remove.png') ?>
</a>
<?php } else { ?>
0 Selected items are currently in downtime.
<?php } ?>
</div>
2013-10-23 12:58:15 +02:00
<a rel="tooltip" title="Remove all acknowledgements from all selected hosts or services" href="<?=
$this->href(
'monitoring/command/removeacknowledgement',
$target
);
?>" class="button btn-cta btn-common btn-wide">
Remove Acknowledgements
</a>
</div>
</div>