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