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