title = '公告ID '.$model->id; $this->params['breadcrumbs'][] = ['label' => '公告管理', 'url' => ['announcements-manage']]; $this->params['breadcrumbs'][] = $this->title; YiiAsset::register($this); ?>
= Html::a('修改公告', ['announcements-update', 'id' => $model->id], ['class' => 'btn btn-primary']) ?> = Html::a('删除公告', ['announcements-delete', 'id' => $model->id], [ 'class' => 'btn btn-danger', 'data' => [ 'confirm' => '你确定要删除这条公告?', 'method' => 'post', ], ]) ?>
= DetailView::widget([ 'model' => $model, 'attributes' => [ 'id', 'title', 'content:ntext', 'published_at', 'updated_at', ], ]) ?>