title = 'Категории анкет'; $this->params['breadcrumbs'][] = $this->title; ?>
= Html::a('Создать новую категорию анкет', ['create'], ['class' => 'btn btn-success']) ?>
= GridView::widget([ 'dataProvider' => $dataProvider, 'filterModel' => $searchModel, 'columns' => [ ['class' => 'yii\grid\SerialColumn'], // 'id', 'title', [ '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', ['class' => 'yii\grid\ActionColumn'], ], ]); ?>