update.php 642 Bytes
<?php

use yii\helpers\Html;

/* @var $this yii\web\View */
/* @var $model common\models\Details */

$this->title = 'Редактирование записи: ' . ' ' . $model->IMPORT_ID;
$this->params['breadcrumbs'][] = ['label' => 'Details', 'url' => ['index']];
$this->params['breadcrumbs'][] = ['label' => $model->IMPORT_ID, 'url' => ['view', 'IMPORT_ID' => $model->IMPORT_ID, 'BRAND' => $model->BRAND, 'ARTICLE' => $model->ARTICLE]];
$this->params['breadcrumbs'][] = 'Update';
?>
<div class="details-update">

    <h1><?= Html::encode($this->title) ?></h1>

    <?= $this->render('_form', [
        'model' => $model,
    ]) ?>

</div>