24 lines
655 B
PHP
24 lines
655 B
PHP
<?php
|
|
|
|
use yii\helpers\Html;
|
|
|
|
/* @var $this yii\web\View */
|
|
/* @var $model common\models\Waste */
|
|
|
|
$this->title = Yii::t('common/waste', 'Update {modelClass}: ', [
|
|
'modelClass' => 'Waste',
|
|
]) . ' ' . $model->id_waste;
|
|
$this->params['breadcrumbs'][] = ['label' => Yii::t('common/waste', 'Wastes'), 'url' => ['index']];
|
|
$this->params['breadcrumbs'][] = ['label' => $model->id_waste, 'url' => ['view', 'id' => $model->id_waste]];
|
|
$this->params['breadcrumbs'][] = Yii::t('common/waste', 'Update');
|
|
?>
|
|
<div class="waste-update">
|
|
|
|
<h1><?= Html::encode($this->title) ?></h1>
|
|
|
|
<?= $this->render('_form', [
|
|
'model' => $model,
|
|
]) ?>
|
|
|
|
</div>
|