dbmsv3/app/Views/templates/admin/index_content_top.php
2025-10-01 14:03:52 +09:00

11 lines
803 B
PHP

<nav class="search nav justify-content-center">
검색어:<?= form_input('index_word', $viewDatas['control']['index_word'] ?? "") ?>
검색일:<?= form_input('index_start', $viewDatas['index_start'] ?? "", ["class" => "calender"]) ?>~<?= form_input('index_end', $viewDatas['index_end'] ?? "", ["class" => "calender"]) ?>
<button class="btn btn-outline-primary" type="submit">검색</button>
<?= anchor(current_url() . '/download/excel', ICONS['EXCEL'], ["target" => "_self", "class" => "excel"]) ?>
</nav>
<nav class="pageinfo nav justify-content-end">
Page:<?= $viewDatas['page'] ?? 1 ?>/<?= $viewDatas['total_page'] ?>
<?= form_dropdown('per_page', $viewDatas['page_options'], $viewDatas['per_page'], ['onChange' => 'this.form.submit()']) ?>
/ 총:<?= $viewDatas['total_count'] ?>
</nav>