46 lines
2.4 KiB
PHP
46 lines
2.4 KiB
PHP
<?= $this->extend(LAYOUTS[$viewDatas['layout']]['path']) ?>
|
|
<?= $this->section('content') ?>
|
|
<?php if ($error = session('error')): echo $viewDatas['helper']->alert($error) ?><?php endif ?>
|
|
<!-- Layout Right Start -->
|
|
<div id="container" class="layout_content">
|
|
<link href="/css/<?= $viewDatas['layout'] ?>/index.css" media="screen" rel="stylesheet" type="text/css" />
|
|
<div class="index_body">
|
|
<?= $this->include("templates/{$viewDatas['layout']}/index_content_top_popup"); ?>
|
|
<?= form_open(current_url(), ['id' => 'batchjob_form', 'method' => "post"]) ?>
|
|
<table class="index_table data table table-bordered table-hover table-striped" data-rtc-resizable-table="reisze_table">
|
|
<thead>
|
|
<tr>
|
|
<th class="index_head_short_column">번호</th>
|
|
<?php foreach ($viewDatas['control']['index_fields'] as $field): ?>
|
|
<th data-rtc-resizable="<?= $field ?>"><?= $viewDatas['helper']->getListLabel($field, $viewDatas) ?></th>
|
|
<?php endforeach ?>
|
|
<th class="index_head_short_column">작업</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php $cnt = 0 ?>
|
|
<?php foreach ($viewDatas['entities'] as $entity): ?>
|
|
<?php $viewDatas['entity'] = $entity; ?>
|
|
<tr <?= $viewDatas['helper']->getListRowColor($entity) ?>>
|
|
<?php $viewDatas['cnt'] = $viewDatas['total_count'] - (($viewDatas['page'] - 1) * $viewDatas['per_page'] + $cnt); ?>
|
|
<td><?= $viewDatas['helper']->getListButton('modify', $viewDatas) ?></td>
|
|
<?php foreach ($viewDatas['control']['index_fields'] as $field): ?>
|
|
<td><?= $viewDatas['helper']->getFieldView($field, $viewDatas) ?></td>
|
|
<?php endforeach ?>
|
|
<td nowrap>
|
|
<?= $viewDatas['helper']->getListButton('view', $viewDatas) ?>
|
|
<?= $viewDatas['helper']->getListButton('delete', $viewDatas) ?>
|
|
</td>
|
|
</tr>
|
|
<?php $cnt++ ?>
|
|
<?php endforeach ?>
|
|
</tbody>
|
|
</table>
|
|
<?= $this->include("templates/{$viewDatas['layout']}/index_content_bottom_popup"); ?>
|
|
<?= form_close() ?>
|
|
</div>
|
|
<div class="index_bottom"><?= $this->include("templates/common/" . (isset($viewDatas['modal_type']) ? $viewDatas['modal_type'] : 'modal_iframe')); ?></div>
|
|
<script type="text/javascript" src="/js/<?= $viewDatas['layout'] ?>/index.js"></script>
|
|
</div>
|
|
<!-- Layout Middle End -->
|
|
<?= $this->endSection() ?>
|