add mark to project

This commit is contained in:
iIronside
2023-01-23 17:50:38 +03:00
parent 9eba04cae2
commit 8a1f99c707
26 changed files with 1199 additions and 87 deletions

View File

@ -0,0 +1,19 @@
<?php
use yii\helpers\Html;
/* @var $this yii\web\View */
/* @var $model backend\modules\project\models\ProjectMark */
$this->title = 'Изменение метки для проекта: ' . $model->project->name;
$this->params['breadcrumbs'][] = ['label' => 'Project Marks', 'url' => ['index']];
$this->params['breadcrumbs'][] = ['label' => $model->id, 'url' => ['view', 'id' => $model->id]];
$this->params['breadcrumbs'][] = 'Update';
?>
<div class="project-mark-update">
<?= $this->render('_form_update', [
'model' => $model,
]) ?>
</div>