cfmgrv3 init...3

This commit is contained in:
최준흠 2023-06-28 13:35:40 +09:00
parent 4e1f49d905
commit b79343b738

View File

@ -23,7 +23,9 @@
<?php foreach ($rows as $row) : ?>
<tr id="<?= $row['uid'] ?>" <?= $row['status'] != 'active' ? 'class="table-danger" rowcolor="red"' : 'rowcolor="red"' ?>>
<td>
<?= form_checkbox(["id" => "checkbox_uid_{$row['uid']}", "name" => "batchjob_uids[]", "value" => $row['uid'], "class" => "batchjobuids_checkboxs"]); ?>
<?php if ($row['status'] != 'active') : ?>
<?= form_checkbox(["id" => "checkbox_uid_{$row['uid']}", "name" => "batchjob_uids[]", "value" => $row['uid'], "class" => "batchjobuids_checkboxs"]); ?>
<?php endif ?>
<?= anchor(current_url() . '/sync/' . $row['uid'], $total_count - (($page - 1) * $per_page + $i)) ?>
</td>
<?php foreach ($fields as $field) : ?>