guild/backend/modules/settings/views/status/update.php

17 lines
450 B
PHP
Raw Normal View History

2018-10-11 11:15:09 +03:00
<?php
/* @var $this yii\web\View */
/* @var $model backend\modules\status\models\Status */
2018-10-12 14:52:08 +03:00
$this->title = 'Редактирование: ' . $model->name;
$this->params['breadcrumbs'][] = ['label' => 'Статусы', 'url' => ['index']];
2018-10-11 11:15:09 +03:00
$this->params['breadcrumbs'][] = ['label' => $model->name, 'url' => ['view', 'id' => $model->id]];
?>
<div class="status-update">
<?= $this->render('_form', [
'model' => $model,
]) ?>
</div>