create.php 436 B

1234567891011121314151617181920
  1. <?php
  2. use yii\helpers\Html;
  3. /** @var yii\web\View $this */
  4. /** @var app\models\ReportTopic $model */
  5. $this->title = 'Create Report Topic';
  6. $this->params['breadcrumbs'][] = ['label' => 'Report Topics', 'url' => ['index']];
  7. $this->params['breadcrumbs'][] = $this->title;
  8. ?>
  9. <div class="report-topic-create">
  10. <h1><?= Html::encode($this->title) ?></h1>
  11. <?= $this->render('_form', [
  12. 'model' => $model,
  13. ]) ?>
  14. </div>