20 lines
416 B
PHP
Executable File
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>
|