view.php 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <?php
  2. use yii\helpers\Html;
  3. use yii\widgets\DetailView;
  4. /** @var yii\web\View $this */
  5. /** @var app\models\Authors $model */
  6. $this->title = $model->name;
  7. $this->params['breadcrumbs'][] = ['label' => 'Authors', 'url' => ['index']];
  8. $this->params['breadcrumbs'][] = $this->title;
  9. \yii\web\YiiAsset::register($this);
  10. ?>
  11. <div class="authors-view">
  12. <h1><?= Html::encode($this->title) ?></h1>
  13. <p>
  14. <?= Html::a('Update', ['update', 'id' => $model->id], ['class' => 'btn btn-primary']) ?>
  15. <?= Html::a('Delete', ['delete', 'id' => $model->id], [
  16. 'class' => 'btn btn-danger',
  17. 'data' => [
  18. 'confirm' => 'Are you sure you want to delete this item?',
  19. 'method' => 'post',
  20. ],
  21. ]) ?>
  22. </p>
  23. <?= DetailView::widget([
  24. 'model' => $model,
  25. 'attributes' => [
  26. 'id',
  27. 'uid',
  28. 'name',
  29. 'url:url',
  30. 'jobTitle',
  31. 'phone',
  32. 'active',
  33. ],
  34. ]) ?>
  35. </div>