= Html::a('Добавить', ['create'], ['class' => 'btn btn-success']) ?>
= GridView::widget([
'dataProvider' => $dataProvider,
'filterModel' => $searchModel,
'summaryOptions' => ['class' => 'alert alert-info'],
'layout' => '{summary}
{items}
{pager}',
'columns' => [
[
'attribute' => 'id',
'contentOptions' => ['style' => 'width: 5%']
],
'username',
'email',
[
'filter' => User::getStatuses(),
'attribute' => 'status',
'value' => function ($model) {
/** @var $model User */
return $model->getStatusLabel();
},
],
[
'filter' => User::getGroups(),
'attribute' => 'group',
'value' => function ($model) {
/** @var $model User */
return $model->getGroupLabel();
},
],
['class' => 'app\components\ActionButtonColumn'],
],
]); ?>