文件收集功能(2/10)

清理修改功能,文件收集没有什么好修改的
This commit is contained in:
Chenx221 2024-02-25 10:29:19 +08:00
parent 34f06f3f94
commit e29f1e8b11
Signed by: chenx221
GPG Key ID: D7A9EC07024C3021

View File

@ -1,21 +0,0 @@
<?php
use yii\helpers\Html;
/** @var yii\web\View $this */
/** @var app\models\CollectionTasks $model */
$this->title = 'Update Collection Tasks: ' . $model->id;
$this->params['breadcrumbs'][] = ['label' => 'Collection Tasks', 'url' => ['index']];
$this->params['breadcrumbs'][] = ['label' => $model->id, 'url' => ['view', 'id' => $model->id]];
$this->params['breadcrumbs'][] = 'Update';
?>
<div class="collection-tasks-update">
<h1><?= Html::encode($this->title) ?></h1>
<?= $this->render('_form', [
'model' => $model,
]) ?>
</div>