/
pashko
/
siec
Обзор
Документация
Войти
/
pashko
/
siec
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
backend/views/feedback/view.php
48 строк
1 KB
Kokorin Pavel
stat mailcount feedback count
22 июн 2020, 07:44
22 июн 2020, 07:44
1b40c4c
Код
Авторство
О чём код?
<?php use yii\helpers\Html; use yii\widgets\DetailView; /* @var $this yii\web\View */ /* @var $model common\models\Feedback */ $this->title = $model->name; $this->params['breadcrumbs'][] = ['label' => 'Feedbacks', 'url' => ['index']]; $this->params['breadcrumbs'][] = $this->title; \yii\web\YiiAsset::register($this); ?> <div class="feedback-view"> <h1><?= Html::encode($this->title) ?></h1> <p> <?= Html::a('Update', ['update', 'id' => $model->id], ['class' => 'btn btn-primary']) ?> <?= Html::a('Delete', ['delete', 'id' => $model->id], [ 'class' => 'btn btn-danger', 'data' => [ 'confirm' => 'Are you sure you want to delete this item?', 'method' => 'post', ], ]) ?> </p> <?= DetailView::widget([ 'model' => $model, 'attributes' => [ 'id', 'name', 'phone', 'email:email', 'from', 'to', 'message:ntext', 'type', 'ip', 'useragent', 'weight', 'volume', 'data:ntext', ], ]) ?> </div>