12345678910111213141516171819 |
- <?php
- use yii\helpers\Html;
- /** @var yii\web\View $this */
- /** @var app\models\Page $model */
- $this->title = 'Обновить документ: ' . $model->title;
- $this->params['breadcrumbs'][] = ['label' => 'Документы', 'url' => ['index']];
- $this->params['breadcrumbs'][] = ['label' => $model->title, 'url' => ['view', 'id' => $model->id]];
- //$this->params['breadcrumbs'][] = 'Update';
- ?>
- <div class="page-update">
- <?= $this->render('_form', [
- 'model' => $model, 'uid' => $model->uid
- ]) ?>
- </div>
|