Blame view

backend/views/brands/update.php 584 Bytes
0084d336   Administrator   Importers CRUD
1
2
3
4
5
6
7
  <?php
  
  use yii\helpers\Html;
  
  /* @var $this yii\web\View */
  /* @var $model common\models\Brands */
  
4b12e92e   Mihail   work with margins...
8
  $this->title = 'Редактирование бренда: ' . ' ' . $model->BRAND;
0084d336   Administrator   Importers CRUD
9
10
  $this->params['breadcrumbs'][] = ['label' => 'Brands', 'url' => ['index']];
  $this->params['breadcrumbs'][] = ['label' => $model->BRAND, 'url' => ['view', 'id' => $model->BRAND]];
5a9f41f9   Administrator   VItaliy 16.12.2015
11
  $this->params['breadcrumbs'][] = 'Редактировать';
0084d336   Administrator   Importers CRUD
12
13
14
15
16
17
18
19
20
21
  ?>
  <div class="brands-update">
  
      <h1><?= Html::encode($this->title) ?></h1>
  
      <?= $this->render('_form', [
          'model' => $model,
      ]) ?>
  
  </div>