mirror of
https://github.com/CyanoFresh/SmartHomePHP.git
synced 2026-02-24 21:31:20 +01:00
20 lines
520 B
PHP
20 lines
520 B
PHP
<?php
|
|
|
|
/* @var $this yii\web\View */
|
|
/* @var $model app\models\Item */
|
|
|
|
use yii\helpers\Html;
|
|
|
|
$this->title = 'Изменить Элемент: ' . $model->name;
|
|
$this->params['breadcrumbs'][] = ['label' => 'Элементы', 'url' => ['index']];
|
|
$this->params['breadcrumbs'][] = ['label' => $model->name, 'url' => ['view', 'id' => $model->id]];
|
|
$this->params['breadcrumbs'][] = 'Редактирование';
|
|
?>
|
|
<div class="item-update">
|
|
|
|
<?= $this->render('_form', [
|
|
'model' => $model,
|
|
]) ?>
|
|
|
|
</div>
|