mirror of
https://github.com/Icinga/icingaweb2.git
synced 2026-04-13 21:16:17 -04:00
6 lines
201 B
PHTML
6 lines
201 B
PHTML
<?php foreach ($object->customvars as $name => $value): ?>
|
|
<tr>
|
|
<th><?= $this->escape($name) ?></th>
|
|
<td class="custom-variables"><?= $this->customvar($value) ?></td>
|
|
</tr>
|
|
<?php endforeach ?>
|