cfmgrv3 init...3

This commit is contained in:
최준흠 2023-06-28 13:36:22 +09:00
parent b79343b738
commit 8cc7778f1b

View File

@ -23,7 +23,7 @@
<?php foreach ($rows as $row) : ?>
<tr id="<?= $row['uid'] ?>" <?= $row['status'] != 'active' ? 'class="table-danger" rowcolor="red"' : 'rowcolor="red"' ?>>
<td>
<?php if ($row['status'] != 'active') : ?>
<?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)) ?>