Files
SmartHomePHP/modules/admin/views/task/update.php
Alex Solomaha 54b0cb32f5 #14 Events
2016-11-26 22:35:03 +02:00

20 lines
499 B
PHP

<?php
/* @var $this yii\web\View */
/* @var $model app\models\Task */
use yii\helpers\Html;
$this->title = 'Изменить Task: ' . $model->name;
$this->params['breadcrumbs'][] = ['label' => 'Tasks', 'url' => ['index']];
$this->params['breadcrumbs'][] = ['label' => $model->name, 'url' => ['view', 'id' => $model->id]];
$this->params['breadcrumbs'][] = 'Редактирование';
?>
<div class="task-update">
<?= $this->render('_form', [
'model' => $model,
]) ?>
</div>