mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-07-26 23:34:08 +02:00
parent
1a962a1b2d
commit
8eb5554ba2
@ -14,26 +14,26 @@ if (! $this->compact): ?>
|
|||||||
<p><?= $this->translate('No service groups found matching the filter.') ?></p>
|
<p><?= $this->translate('No service groups found matching the filter.') ?></p>
|
||||||
</div>
|
</div>
|
||||||
<?php return; endif ?>
|
<?php return; endif ?>
|
||||||
<table class="groupview action" data-base-target="_next">
|
<table class="action-tabline listing-table" data-base-target="_next">
|
||||||
<thead>
|
<thead>
|
||||||
|
<th></th>
|
||||||
<th><?= $this->translate('Service Group') ?></th>
|
<th><?= $this->translate('Service Group') ?></th>
|
||||||
<th><?= $this->translate('Total Services') ?></th>
|
|
||||||
<th><?= $this->translate('Service States') ?></th>
|
<th><?= $this->translate('Service States') ?></th>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
<?php foreach ($servicegroups->peekAhead($this->compact) as $serviceGroup): ?>
|
<?php foreach ($servicegroups->peekAhead($this->compact) as $serviceGroup): ?>
|
||||||
<tr href="<?= $this->href('monitoring/list/services', array('servicegroup_name' => $serviceGroup->servicegroup_name)) ?>">
|
<tr href="<?= $this->href('monitoring/list/services', array('servicegroup_name' => $serviceGroup->servicegroup_name)) ?>">
|
||||||
<td class="groupname">
|
<td class="count-col">
|
||||||
|
<span class="badge"><?= $serviceGroup->services_total ?></span>
|
||||||
|
</td>
|
||||||
|
<th>
|
||||||
<?= $this->qlink(
|
<?= $this->qlink(
|
||||||
$serviceGroup->servicegroup_alias,
|
$serviceGroup->servicegroup_alias,
|
||||||
'monitoring/list/services',
|
'monitoring/list/services',
|
||||||
array('servicegroup_name' => $serviceGroup->servicegroup_name),
|
array('servicegroup_name' => $serviceGroup->servicegroup_name),
|
||||||
array('title' => sprintf($this->translate('List all services in the group "%s"'), $serviceGroup->servicegroup_alias))
|
array('title' => sprintf($this->translate('List all services in the group "%s"'), $serviceGroup->servicegroup_alias))
|
||||||
) ?>
|
) ?>
|
||||||
</td>
|
</th>
|
||||||
<td class="total">
|
|
||||||
<?= $serviceGroup->services_total ?>
|
|
||||||
</td>
|
|
||||||
<td>
|
<td>
|
||||||
<?php
|
<?php
|
||||||
$stateBadges = new StateBadges();
|
$stateBadges = new StateBadges();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user