title = $model->question_body; $this->params['breadcrumbs'][] = ['label' => 'Questions', 'url' => ['index']]; $this->params['breadcrumbs'][] = $this->title; \yii\web\YiiAsset::register($this); ?>
= Html::a('Список', ['index'], ['class' => 'btn btn-primary']) ?> = Html::a('Изменить', ['update', 'id' => $model->id], ['class' => 'btn btn-primary']) ?> = Html::a('Удалить', ['delete', 'id' => $model->id], [ 'class' => 'btn btn-danger', 'data' => [ 'confirm' => 'Вы уверены, что хотите удалить этот элемент?', 'method' => 'post', ], ]) ?>
= DetailView::widget([ 'model' => $model, 'attributes' => [ 'id', [ 'attribute' => 'question_type_id', 'value' => ArrayHelper::getValue($model, 'questionType.question_type'), ], [ 'attribute' => 'questionnaire_id', 'value' => ArrayHelper::getValue($model,'questionnaire.title'), ], 'question_body', 'question_priority', 'next_question', [ 'attribute' => 'status', 'format' => 'raw', 'filter' => StatusHelper::statusList(), 'value' => StatusHelper::statusLabel($model->status), ], 'created_at', 'updated_at', [ 'attribute' => 'time_limit', 'format' => 'raw', 'value' => TimeHelper::limitTime($model->time_limit), ], 'score' ], ]) ?>= Html::a( 'Добавить новый ответ', ['answer/create', 'question_id' => $model->id], ['class' => 'btn btn-primary'] ) ?>