123456789101112131415161718192021 |
- <?php
- use yii\helpers\Html;
- /** @var yii\web\View $this */
- /** @var app\models\ReportTopic $model */
- $this->title = 'Update Report Topic: ' . $model->title;
- $this->params['breadcrumbs'][] = ['label' => 'Report Topics', 'url' => ['index']];
- $this->params['breadcrumbs'][] = ['label' => $model->title, 'url' => ['view', 'id' => $model->id]];
- $this->params['breadcrumbs'][] = 'Update';
- ?>
- <div class="report-topic-update">
- <h1><?= Html::encode($this->title) ?></h1>
- <?= $this->render('_form', [
- 'model' => $model,
- ]) ?>
- </div>
|