mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-07-29 00:34:03 +02:00
23 lines
790 B
PHTML
23 lines
790 B
PHTML
<div class="panel panel-default">
|
|
<div class="panel-heading">Heading</div>
|
|
<div class="panel-body">
|
|
<table class="table table-condensed">
|
|
<?php foreach ($this->monitoringFlags($object) as $flag => $enabled): ?>
|
|
<tr>
|
|
<th><?= $flag; ?></th>
|
|
<td>
|
|
<?php if ($enabled === true): ?>
|
|
<span>{{ENABLED_ICON}} ENABLED</span>
|
|
<?php else: ?>
|
|
<span>{{DISABLED_ICON}} DISABLED</span>
|
|
<?php endif; ?>
|
|
</td>
|
|
<td>
|
|
<a class="button" href="#">{{{ENABLE_OR_DISABLE_COMMAND}}}</a>
|
|
</td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
</table>
|
|
</div>
|
|
</div>
|