1234567891011121314151617181920212223242526272829303132333435363738 |
- <?php
- use yii\helpers\Html;
- use yii\widgets\DetailView;
- /* @var $this yii\web\View */
- /* @var $model common\models\Suggest */
- $this->title = $model->id;
- $this->params['breadcrumbs'][] = ['label' => '留言', 'url' => ['index']];
- $this->params['breadcrumbs'][] = $this->title;
- ?>
- <div class="suggest-view">
- <p>
- <?= Html::a(Yii::t('common', 'Delete'), ['delete', 'id' => $model->id], [
- 'class' => 'btn btn-danger',
- 'data' => [
- 'confirm' => Yii::t('common', 'Are you sure you want to delete this item?'),
- 'method' => 'post',
- ],
- ]) ?>
- </p>
- <?= DetailView::widget([
- 'model' => $model,
- 'attributes' => [
- 'id',
- 'content:ntext',
- 'created_at:datetime',
- [
- 'attribute' => 'user_id',
- 'value' => $model->user->username
- ],
- ],
- ]) ?>
- </div>
|