12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- use yii\helpers\Html;
- use yii\widgets\DetailView;
- /* @var $this yii\web\View */
- /* @var $model common\models\AdminLog */
- $this->title = $model->id;
- $this->params['breadcrumbs'][] = ['label' => '操作日志', 'url' => ['index']];
- $this->params['breadcrumbs'][] = $this->title;
- ?>
- <div class="admin-log-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',
- 'route',
- 'description:ntext',
- 'created_at:datetime',
- 'user_id',
- 'ip',
- ],
- ]) ?>
- </div>
|