39 lines
1.4 KiB
PHP
39 lines
1.4 KiB
PHP
<?= $this->extend(LAYOUTS[$viewDatas['layout']]['path']) ?>
|
|
<?= $this->section('content') ?>
|
|
<div id="container" class="content">
|
|
<link href="/css/<?= $viewDatas['layout'] ?>/form.css" media="screen" rel="stylesheet" type="text/css" />
|
|
<div class="action_form">
|
|
<table class="table table-bordered">
|
|
<?php foreach ($viewDatas['entitys'] as $entity): ?>
|
|
<?php $viewDatas['entity'] = $entity ?>
|
|
<?php $cnt = 1 ?>
|
|
<tr>
|
|
<?php foreach ($viewDatas['fields'] as $field): ?>
|
|
<th>번호</th>
|
|
<th nowrap class="text-end"><?= $viewDatas['helper']->getFieldLabel($field, $viewDatas) ?></th>
|
|
<?php endforeach ?>
|
|
</tr>
|
|
<tr>
|
|
<?php foreach ($viewDatas['fields'] as $field): ?>
|
|
<th><?= $cnt ?></th>
|
|
<td nowrap class="text-start"><?= $viewDatas['helper']->getFieldView($field, $viewDatas, $viewDatas) ?></td>
|
|
<?php endforeach ?>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="<?= count($viewDatas['fields']) + 1 ?>">
|
|
<?php foreach ($entity->records as $record): ?>
|
|
<?= $record->getTitle() ?>
|
|
<?php endforeach ?>
|
|
</td>
|
|
</tr>
|
|
<?php $cnt++ ?>
|
|
<?php endforeach ?>
|
|
<tr>
|
|
<td colspan="<?= $cnt * 2 ?>" class="text-center">
|
|
<div><?= $viewDatas['message'] ?></div>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
<?= $this->endSection() ?>
|