/
pashko
/
siec
Обзор
Документация
Войти
/
pashko
/
siec
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
backend/views/feedback/index.php
47 строк
999 B
Kokorin Pavel
stat mailcount feedback count
22 июн 2020, 07:44
22 июн 2020, 07:44
1b40c4c
Код
Авторство
О чём код?
<?php use yii\helpers\Html; use yii\grid\GridView; use yii\widgets\Pjax; /* @var $this yii\web\View */ /* @var $dataProvider yii\data\ActiveDataProvider */ $this->title = 'Feedbacks'; $this->params['breadcrumbs'][] = $this->title; ?> <div class="feedback-index"> <h1><?= Html::encode($this->title) ?></h1> <p> <?= Html::a('Create Feedback', ['create'], ['class' => 'btn btn-success']) ?> </p> <?php Pjax::begin(); ?> <?= GridView::widget([ 'dataProvider' => $dataProvider, 'columns' => [ ['class' => 'yii\grid\SerialColumn'], 'id', 'name', 'phone', 'email:email', 'from', //'to', //'message:ntext', //'type', //'ip', //'useragent', //'weight', //'volume', //'data:ntext', ['class' => 'yii\grid\ActionColumn'], ], ]); ?> <?php Pjax::end(); ?> </div>