guild/backend/modules/settings/views/position/create.php

20 lines
416 B
PHP
Raw Normal View History

2018-10-12 14:52:08 +03:00
<?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>