guild/backend/modules/hh/views/hh/create.php
2019-06-21 18:05:58 +03:00

20 lines
372 B
PHP
Executable File

<?php
use yii\helpers\Html;
/* @var $this yii\web\View */
/* @var $model backend\modules\hh\models\Hh */
$this->title = 'Добавить';
$this->params['breadcrumbs'][] = ['label' => 'hh.ru', 'url' => ['index']];
$this->params['breadcrumbs'][] = $this->title;
?>
<div class="hh-create">
<?= $this->render('_form', [
'model' => $model,
]) ?>
</div>