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

19 lines
483 B
PHP
Executable File

<?php
use yii\helpers\Html;
/* @var $this yii\web\View */
/* @var $model backend\modules\settings\models\Position */
$this->title = 'Редактирование: ' . $model->name;
$this->params['breadcrumbs'][] = ['label' => 'Должности', 'url' => ['index']];
$this->params['breadcrumbs'][] = ['label' => $model->name, 'url' => ['view', 'id' => $model->id]];
?>
<div class="position-update">
<?= $this->render('_form', [
'model' => $model,
]) ?>
</div>