mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-05-14 19:50:16 +02:00
7 lines
245 B
PHTML
7 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 ?>
|