清理无效的tickets页面

This commit is contained in:
Chenx221 2024-04-18 15:20:25 +08:00
parent e46b6a2d4f
commit bdb66e167a
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\Tickets $model */
$this->title = 'Update Tickets: ' . $model->title;
$this->params['breadcrumbs'][] = ['label' => 'Tickets', 'url' => ['index']];
$this->params['breadcrumbs'][] = ['label' => $model->title, 'url' => ['view', 'id' => $model->id]];
$this->params['breadcrumbs'][] = 'Update';
?>
<div class="tickets-update">
<h1><?= Html::encode($this->title) ?></h1>
<?= $this->render('_form', [
'model' => $model,
]) ?>
</div>