title = Yii::t('common', 'Clocks');
$this->params['breadcrumbs'][] = $this->title;
?>
beginBlock('content-header') ?>
= $this->title ?>
endBlock() ?>
render('_search', ['model' => $searchModel]); ?>
    
        = GridView::widget([
            'dataProvider' => $dataProvider,
//            'filterModel' => $searchModel,
            'columns' => [
                'id',
                'user_id:user',
                'cat_id:circleCat',
                'content',
                'poiname',
//                'poiaddress',
                //'lng',
                // 'lat',
                // 'province',
                // 'city',
                // 'remark',
                'created_at:datetime',
                // 'updated_at',
                // 'status',
                [
                    'class' => 'backend\widgets\grid\SwitcherColumn',
                    'attribute' => 'status'
                ],
                [
                    'class' => 'common\helpers\DiyActionColumn',
                    'template' => '{update} {delete}',
                ]
            ],
        ]); ?>