23 lines
1.3 KiB
PHP
23 lines
1.3 KiB
PHP
<?= form_open(current_url(), ["method" => "get"]) ?>
|
|
<nav class="index_top navbar navbar-expand-lg">
|
|
<div class="container-fluid">
|
|
<nav class="condition nav">
|
|
조건:
|
|
<?php foreach ($viewDatas['control']['filter_fields'] as $field): ?>
|
|
<?= $viewDatas['helper']->getFieldForm($field, $viewDatas[$field] ?? old($field), $viewDatas, ['id' => $field, 'index_content_top_filter' => 'true']) ?>
|
|
<?php endforeach ?>
|
|
</nav>
|
|
<nav class="search nav justify-content-center">
|
|
검색어:<?= form_input('word', $viewDatas['word'] ?? "") ?>
|
|
검색일:<?= form_input('start', $viewDatas['start'] ?? "", ["class" => "calender"]) ?>~<?= form_input('end', $viewDatas['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>
|
|
</div>
|
|
</nav>
|
|
<?= form_close() ?>
|