40 lines
908 B
PHP
40 lines
908 B
PHP
<?php
|
||
|
||
use yii\helpers\Html;
|
||
use yii\widgets\ActiveForm;
|
||
|
||
/* @var $this yii\web\View */
|
||
/* @var $model frontend\modules\reports\models\ReportsSearch */
|
||
/* @var $form yii\widgets\ActiveForm */
|
||
?>
|
||
|
||
<div class="reports-search">
|
||
|
||
<?php $form = ActiveForm::begin([
|
||
'action' => ['index'],
|
||
'method' => 'get',
|
||
]); ?>
|
||
|
||
<?= $form->field($model, 'id') ?>
|
||
|
||
<?= $form->field($model, 'created_at') ?>
|
||
|
||
<?= $form->field($model, 'today') ?>
|
||
|
||
<?= $form->field($model, 'difficulties') ?>
|
||
|
||
<?= $form->field($model, 'tomorrow') ?>
|
||
|
||
<?php // echo $form->field($model, 'user_card_id') ?>
|
||
|
||
<?php // echo $form->field($model, 'status') ?>
|
||
|
||
<div class="form-group">
|
||
<?= Html::submitButton('Поиск', ['class' => 'btn btn-primary']) ?>
|
||
<?= Html::resetButton('Сброс', ['class' => 'btn btn-default']) ?>
|
||
</div>
|
||
|
||
<?php ActiveForm::end(); ?>
|
||
|
||
</div>
|