title = $model->title; $this->params['breadcrumbs'][] = ['label' => '人才', 'url' => ['index']]; $this->params['breadcrumbs'][] = $this->title; ?>
= Html::a(Yii::t('common', 'Update'), ['update', 'id' => $model->id], ['class' => 'btn btn-success']) ?> = 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', ], ]) ?>
= DetailView::widget([ 'model' => $model, 'attributes' => [ 'id', 'title', [ 'attribute' => 'content', 'label' => '内容', 'value' => \yii\helpers\Markdown::process($model->data->content), 'format' => 'raw', ], 'category', 'created_at:datetime', 'updated_at:datetime', 'status', 'cover', ], ]) ?>