2021-10-22 17:02:28 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
use kartik\select2\Select2;
|
2021-11-02 17:29:15 +03:00
|
|
|
use kartik\time\TimePicker;
|
2021-10-22 17:02:28 +03:00
|
|
|
use yii\helpers\Html;
|
|
|
|
use yii\widgets\ActiveForm;
|
|
|
|
|
|
|
|
/* @var $this yii\web\View */
|
|
|
|
/* @var $model backend\modules\questionnaire\models\Question */
|
|
|
|
/* @var $form yii\widgets\ActiveForm */
|
|
|
|
?>
|
|
|
|
|
|
|
|
<div class="question-form">
|
|
|
|
|
|
|
|
<?php $form = ActiveForm::begin(); ?>
|
|
|
|
|
|
|
|
<?= $form->field($model, 'question_type_id')->widget(Select2::class,
|
|
|
|
[
|
|
|
|
'data' => \yii\helpers\ArrayHelper::map(\common\models\QuestionType::find()->all(),'id', 'question_type'),
|
|
|
|
'options' => ['placeholder' => '...','class' => 'form-control'],
|
|
|
|
'pluginOptions' => [
|
|
|
|
'allowClear' => true
|
|
|
|
],
|
|
|
|
]
|
|
|
|
); ?>
|
|
|
|
|
|
|
|
<?= $form->field($model, 'questionnaire_id')->widget(Select2::class,
|
|
|
|
[
|
|
|
|
'data' => \yii\helpers\ArrayHelper::map(\common\models\Questionnaire::find()->all(),'id', 'title'),
|
|
|
|
'options' => ['placeholder' => '...','class' => 'form-control'],
|
|
|
|
'pluginOptions' => [
|
|
|
|
'allowClear' => true
|
|
|
|
],
|
|
|
|
]
|
|
|
|
); ?>
|
|
|
|
|
|
|
|
<?= $form->field($model, 'question_body')->textInput(['maxlength' => true]) ?>
|
|
|
|
|
|
|
|
<?= $form->field($model, 'question_priority')->textInput() ?>
|
|
|
|
|
|
|
|
<?= $form->field($model, 'next_question')->textInput() ?>
|
|
|
|
|
|
|
|
<?= $form->field($model, 'status')->dropDownList(
|
2021-10-29 17:06:09 +03:00
|
|
|
\common\helpers\StatusHelper::statusList(),
|
2021-10-22 17:02:28 +03:00
|
|
|
[
|
|
|
|
'prompt' => 'Выберите'
|
|
|
|
]
|
|
|
|
) ?>
|
|
|
|
|
2021-11-03 10:27:04 +03:00
|
|
|
<?= $form->field($model, 'time_limit')->widget(\backend\components\timepicker\src\TimePicker::class,
|
2021-10-22 17:02:28 +03:00
|
|
|
[
|
2021-11-02 17:29:15 +03:00
|
|
|
'name' => 'time_limit_picker',
|
|
|
|
'pluginOptions' => [
|
|
|
|
'showSeconds' => false,
|
|
|
|
'showMeridian' => false,
|
|
|
|
'minuteStep' => 1,
|
|
|
|
'defaultTime' => ''
|
|
|
|
]
|
|
|
|
]) ?>
|
2021-10-22 17:02:28 +03:00
|
|
|
|
|
|
|
<?= $form->field($model, 'score')->textInput(['maxlength' => true]) ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div class="form-group">
|
|
|
|
<?= Html::submitButton('Сохранить', ['class' => 'btn btn-success']) ?>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<?php ActiveForm::end(); ?>
|
|
|
|
|
|
|
|
</div>
|