mirror of
https://github.com/Icinga/icingaweb2.git
synced 2026-02-26 11:10:24 -05:00
23 lines
646 B
PHTML
23 lines
646 B
PHTML
|
|
<div class="panel panel-default">
|
|
<div class="panel-heading">
|
|
<span>Customvariables</span>
|
|
</div>
|
|
|
|
<div class="panel-body">
|
|
<?php if (isset($object->customvars) && count($object->customvars)) { ?>
|
|
<table>
|
|
<tr>
|
|
<th>Name</th>
|
|
<th>Value</th>
|
|
</tr>
|
|
<?php foreach ($object->customvars as $name => $value) { ?>
|
|
<tr>
|
|
<td><?= $this->escape($name) ?></td>
|
|
<td><?= $this->escape($value) ?></td>
|
|
</tr>
|
|
<?php } ?>
|
|
</table>
|
|
<?php } ?>
|
|
</div>
|
|
</div>
|