17 lines
450 B
PHP
Executable File
17 lines
450 B
PHP
Executable File
<?php
|
|
|
|
/* @var $this yii\web\View */
|
|
/* @var $model backend\modules\status\models\Status */
|
|
|
|
$this->title = 'Редактирование: ' . $model->name;
|
|
$this->params['breadcrumbs'][] = ['label' => 'Статусы', 'url' => ['index']];
|
|
$this->params['breadcrumbs'][] = ['label' => $model->name, 'url' => ['view', 'id' => $model->id]];
|
|
?>
|
|
<div class="status-update">
|
|
|
|
<?= $this->render('_form', [
|
|
'model' => $model,
|
|
]) ?>
|
|
|
|
</div>
|