title = 'Галерея'; $this->params[ 'breadcrumbs' ][] = $this->title; ?>
= Html::a(Yii::t('app', 'Добавить'), [ 'gallery-create' ], [ 'class' => 'btn btn-success' ]) ?>
= GridView::widget([ 'dataProvider' => $dataProvider, 'filterModel' => $searchModel, 'columns' => [ [ 'attribute' => 'gallery_id', 'label' => 'ID', ], 'name', 'date_add', [ 'attribute' => 'type', 'value' => function($model, $key, $index, $column) { switch($model->type) { case 2: return 'Видео'; break; default: return 'Фото'; break; } }, 'label' => 'Фото или Видео', 'filter' => [ 1 => 'Фото', 2 => 'Видео', ] ], ], ]) ?>