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

20 lines
416 B
PHP
Executable File

<?php
use yii\helpers\Html;
/* @var $this yii\web\View */
/* @var $model backend\modules\settings\models\Position */
$this->title = 'Новая должность';
$this->params['breadcrumbs'][] = ['label' => 'Должности', 'url' => ['index']];
$this->params['breadcrumbs'][] = $this->title;
?>
<div class="position-create">
<?= $this->render('_form', [
'model' => $model,
]) ?>
</div>