guild/backend/modules/settings/views/mark/update.php
2023-01-23 17:50:52 +03:00

20 lines
508 B
PHP

<?php
use yii\helpers\Html;
/* @var $this yii\web\View */
/* @var $model backend\modules\settings\models\Mark */
$this->title = 'Изменение метки: ' . $model->title;
$this->params['breadcrumbs'][] = ['label' => 'Marks', 'url' => ['index']];
$this->params['breadcrumbs'][] = ['label' => $model->title, 'url' => ['view', 'id' => $model->id]];
$this->params['breadcrumbs'][] = 'Update';
?>
<div class="mark-update">
<?= $this->render('_form', [
'model' => $model,
]) ?>
</div>