Files
SmartHomePHP/modules/admin/views/task/update.php
2017-01-19 22:07:43 +02:00

20 lines
514 B
PHP

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