= Html::a('Добавить', ['create'], ['class' => 'btn btn-success']) ?>
= GridView::widget([
'dataProvider' => $dataProvider,
'summaryOptions' => ['class' => 'alert alert-info'],
'layout' => '{summary}
{items}
{pager}',
'filterModel' => $searchModel,
'columns' => [
[
'attribute' => 'id',
'contentOptions' => ['style' => 'width: 5%']
],
[
'filter' => Task::getTypes(),
'attribute' => 'type',
'value' => function (Task $model) {
return $model->getTypeLabel();
},
],
// 'item_id',
// 'item_value',
'name',
['class' => 'app\components\ActionButtonColumn'],
],
]); ?>