guild/backend/modules/holiday/views/holiday/_search.php
2019-12-10 17:22:20 +03:00

29 lines
615 B
PHP
Executable File

<?php
use yii\helpers\Html;
use yii\widgets\ActiveForm;
?>
<div class="holiday-search">
<?php $form = ActiveForm::begin([
'action' => ['index'],
'method' => 'get',
]); ?>
<?= $form->field($model, 'id') ?>
<?= $form->field($model, 'card_id') ?>
<?= $form->field($model, 'dt_start') ?>
<?= $form->field($model, 'dt_end') ?>
<div class="form-group">
<?= Html::submitButton('Поиск', ['class' => 'btn btn-primary']) ?>
<?= Html::resetButton('Сбросить', ['class' => 'btn btn-default']) ?>
</div>
<?php ActiveForm::end(); ?>
</div>