2015-09-24 16:05:52 +02:00
|
|
|
<?php foreach ($object->customvars as $name => $value): ?>
|
|
|
|
<tr>
|
2015-09-30 18:52:52 +02:00
|
|
|
<th><?= $this->escape(ucwords(str_replace('_', ' ', strtolower($name)))) ?></th>
|
2015-09-24 16:05:52 +02:00
|
|
|
<td><?= $this->customvar($value) ?></td>
|
2015-04-23 13:31:02 +02:00
|
|
|
</tr>
|
2015-09-24 16:05:52 +02:00
|
|
|
<?php endforeach ?>
|