| Current Path : /var/www/html/ebook/backend/views/frontend/frontend-content-template/ |
| Current File : /var/www/html/ebook/backend/views/frontend/frontend-content-template/index.php |
<?php
use yii\helpers\Html;
use yii\grid\GridView;
use yii\widgets\Pjax;
/* @var $this yii\web\View */
/* @var $searchModel backend\models\frontendcontenttemplate\FrontendContentTemplateSearch */
/* @var $dataProvider yii\data\ActiveDataProvider */
$this->title = Yii::t('app', 'Frontend Content Templates');
$this->params['breadcrumbs'][] = $this->title;
?>
<div class="wrapper wrapper-content animated fadeInRight">
<div class="ibox float-e-margins">
<div class="ibox-title"> <?php echo $this->render('_search', ['model' => $searchModel]); ?></div>
<div class="ibox-content">
<div class="table-responsive">
<?php Pjax::begin(); ?>
<?= GridView::widget([
'dataProvider' => $dataProvider,
// 'filterModel' => $searchModel,
'columns' => [
['class' => 'yii\grid\SerialColumn'],
// 'frontend_content_template_id',
'template_title',
'template_description',
// 'template_html:ntext',
// 'template_status',
//'created_date',
//'updated_date',
//'created_by',
//'updated_by',
['class' => 'yii\grid\ActionColumn'],
],
]); ?>
<?php Pjax::end(); ?>
</div>
</div>
</div>
</div>