Files
SmartHomePHP/modules/admin/views/user/update.php
Alex Solomaha c021d959dd Refactor
2016-10-21 16:03:14 +03:00

20 lines
577 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">
<h1 class="page-header"><?= $this->title ?></h1>
<?= $this->render('_form', [
'model' => $model,
]) ?>
</div>