mirror of
https://github.com/Icinga/icingaweb2.git
synced 2026-04-27 00:57:02 -04:00
6 lines
245 B
PHTML
6 lines
245 B
PHTML
<?php foreach ($object->customvars as $name => $value): ?>
|
|
<tr>
|
|
<th><?= $this->escape(ucwords(str_replace('_', ' ', strtolower($name)))) ?></th>
|
|
<td class="custom-variables"><?= $this->customvar($value) ?></td>
|
|
</tr>
|
|
<?php endforeach ?>
|