mirror of
https://github.com/getformwork/formwork.git
synced 2025-02-24 09:42:43 +01:00
24 lines
511 B
PHP
24 lines
511 B
PHP
<div class="component">
|
|
<h3 class="caption"><?= $this->label('options.options') ?></h3>
|
|
<?= $tabs ?>
|
|
<?php
|
|
foreach ($info as $section => $data):
|
|
?>
|
|
<div class="section-header"><?= $section ?></div>
|
|
<table class="info-data">
|
|
<?php
|
|
foreach ($data as $key => $value):
|
|
?>
|
|
<tr>
|
|
<td class="info-data-key"><?= $key ?></td>
|
|
<td class="info-data-value"><?= $value ?></td>
|
|
</tr>
|
|
<?php
|
|
endforeach;
|
|
?>
|
|
</table>
|
|
<?php
|
|
endforeach;
|
|
?>
|
|
</div>
|