Files
2016-12-08 21:52:54 +02:00

18 lines
509 B
PHP

<?php
/* @var $this yii\web\View */
/* @var $model app\models\Board */
$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="board-update">
<?= $this->render('_form', [
'model' => $model,
]) ?>
</div>