123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <?php
- use yii\helpers\Html;
- use yii\widgets\DetailView;
- /** @var yii\web\View $this */
- /** @var app\models\Authors $model */
- $this->title = $model->name;
- $this->params['breadcrumbs'][] = ['label' => 'Authors', 'url' => ['index']];
- $this->params['breadcrumbs'][] = $this->title;
- \yii\web\YiiAsset::register($this);
- ?>
- <div class="authors-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',
- 'uid',
- 'name',
- 'url:url',
- 'jobTitle',
- 'phone',
- 'active',
- ],
- ]) ?>
- </div>
|