mirror of
https://github.com/CyanoFresh/SmartHomePHP.git
synced 2026-02-25 22:01:21 +01:00
18 lines
523 B
PHP
18 lines
523 B
PHP
<?php
|
|
|
|
/* @var $this yii\web\View */
|
|
/* @var $model app\models\User */
|
|
|
|
$this->title = 'Изменить пользователя: ' . $model->username;
|
|
$this->params['breadcrumbs'][] = ['label' => 'Пользователи', 'url' => ['index']];
|
|
$this->params['breadcrumbs'][] = ['label' => $model->username, 'url' => ['view', 'id' => $model->id]];
|
|
$this->params['breadcrumbs'][] = 'Редактирование';
|
|
?>
|
|
<div class="user-update">
|
|
|
|
<?= $this->render('_form', [
|
|
'model' => $model,
|
|
]) ?>
|
|
|
|
</div>
|