title = $model->question_body; $this->params['breadcrumbs'][] = ['label' => 'Questions', 'url' => ['index']]; $this->params['breadcrumbs'][] = $this->title; \yii\web\YiiAsset::register($this); ?>

'btn btn-primary']) ?> $model->id], ['class' => 'btn btn-primary']) ?> $model->id], [ 'class' => 'btn btn-danger', 'data' => [ 'confirm' => 'Are you sure you want to delete this item?', 'method' => 'post', ], ]) ?>

$model, 'attributes' => [ 'id', [ 'attribute' => 'question_type_id', 'value' => function($model){ return $model->getQuestionTitle(); } ], [ 'attribute' => 'questionnaire_id', 'value' => function($model){ return $model->getQuestionnaireTitle(); } ], 'question_body', 'question_priority', 'next_question', [ 'attribute' => 'status', 'format' => 'raw', 'value' => function ($model) { return \yii\helpers\Html::tag( 'span', $model->status ? 'Active' : 'Not Active', [ 'class' => 'label label-' . ($model->status ? 'success' : 'danger'), ] ); }, ], 'created_at', 'updated_at', [ 'attribute' => 'time_limit', 'value' => function($model){ return $model->limitTime; } ], 'score' ], ]) ?>