29 lines
615 B
PHP
Executable File
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>
|