create.php 445 B

123456789101112131415161718
  1. <?php
  2. use yii\helpers\Html;
  3. /** @var yii\web\View $this */
  4. /** @var app\models\Person $model */
  5. $this->title = 'Создание карточки персоны (Эксперта)';
  6. $this->params['breadcrumbs'][] = ['label' => 'Персоны (Эксперты)', 'url' => ['index']];
  7. $this->params['breadcrumbs'][] = $this->title;
  8. ?>
  9. <div class="person-create">
  10. <?= $this->render('_form', [
  11. 'model' => $model,
  12. ]) ?>
  13. </div>