title = Yii::t('common', 'Circle Cats');
$this->params['breadcrumbs'][] = $this->title;
?>
beginBlock('content-header') ?>
= $this->title . ' ' . Html::a(Yii::t('common', 'Create Circle Cat'), ['create'], ['class' => 'btn btn-success']) ?>
endBlock() ?>
render('_search', ['model' => $searchModel]); ?>
= GridView::widget([
'dataProvider' => $dataProvider,
'filterModel' => $searchModel,
'columns' => [
'id',
'title',
'slug',
// 'pid',
// 'created_at',
// 'updated_at',
'description',
[
'class' => 'backend\widgets\grid\PositionColumn',
'attribute' => 'sort'
],
[
'class' => 'backend\widgets\grid\SwitcherColumn',
'attribute' => 'status'
],
[
'class' => 'common\helpers\DiyActionColumn',
'template' => '{update} {delete}',
]
],
]); ?>