2021-10-22 17:02:28 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
use yii\helpers\Html;
|
|
|
|
use yii\widgets\ActiveForm;
|
|
|
|
|
|
|
|
/* @var $this yii\web\View */
|
|
|
|
/* @var $model backend\modules\questionnaire\models\UserQuestionnaireSearch */
|
|
|
|
/* @var $form yii\widgets\ActiveForm */
|
|
|
|
?>
|
|
|
|
|
|
|
|
<div class="user-questionnaire-search">
|
|
|
|
|
|
|
|
<?php $form = ActiveForm::begin([
|
|
|
|
'action' => ['index'],
|
|
|
|
'method' => 'get',
|
|
|
|
]); ?>
|
|
|
|
|
|
|
|
<?= $form->field($model, 'id') ?>
|
|
|
|
|
|
|
|
<?= $form->field($model, 'questionnaire_id') ?>
|
|
|
|
|
|
|
|
<?= $form->field($model, 'user_id') ?>
|
|
|
|
|
|
|
|
<?= $form->field($model, 'uuid') ?>
|
|
|
|
|
|
|
|
<?= $form->field($model, 'created_at') ?>
|
|
|
|
|
|
|
|
<?php // echo $form->field($model, 'updated_at') ?>
|
|
|
|
|
|
|
|
<?php // echo $form->field($model, 'score') ?>
|
|
|
|
|
|
|
|
<?php // echo $form->field($model, 'status') ?>
|
|
|
|
|
2021-10-25 13:41:12 +03:00
|
|
|
<?php // echo $form->field($model, 'percent_correct_answers') ?>
|
|
|
|
|
2021-10-22 17:02:28 +03:00
|
|
|
<div class="form-group">
|
|
|
|
<?= Html::submitButton('Search', ['class' => 'btn btn-primary']) ?>
|
|
|
|
<?= Html::resetButton('Reset', ['class' => 'btn btn-default']) ?>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<?php ActiveForm::end(); ?>
|
|
|
|
|
|
|
|
</div>
|