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 ], ] ); ?> 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 ], ] ); ?> field($model, 'question_body')->textInput(['maxlength' => true]) ?> field($model, 'question_priority')->textInput() ?> field($model, 'next_question')->textInput() ?> field($model, 'status')->dropDownList( \common\helpers\StatusHelper::statusList(), [ 'prompt' => 'Выберите' ] ) ?> field($model, 'time_limit')->dropDownList( [ '' => 'Не ограничено', '30' => '30 секунд', '60' => '1 минута', '90' => '1:30 секунд', '120' => '2 минуты', '180' => '3 минуты', '300' => '5 минут', '600' => '10 минут', ] ) ?> field($model, 'score')->textInput(['maxlength' => true]) ?>
'btn btn-success']) ?>