Blame view

backend/views/margins/update.php 656 Bytes
021728bd   Administrator   Importers CRUD
1
2
3
4
5
6
7
  <?php
  
  use yii\helpers\Html;
  
  /* @var $this yii\web\View */
  /* @var $model common\models\Margins */
  
4b12e92e   Mihail   work with margins...
8
  $this->title = 'Редактировать тип цен: ' . ' ' . $model->name;
021728bd   Administrator   Importers CRUD
9
10
  $this->params['breadcrumbs'][] = ['label' => 'Margins', 'url' => ['index']];
  $this->params['breadcrumbs'][] = ['label' => $model->name, 'url' => ['view', 'id' => $model->id]];
4b12e92e   Mihail   work with margins...
11
  $this->params['breadcrumbs'][] = 'Обновить';
021728bd   Administrator   Importers CRUD
12
13
14
15
16
17
18
19
20
  ?>
  <div class="margins-update">
  
      <h1><?= Html::encode($this->title) ?></h1>
  
      <?= $this->render('_form', [
          'model' => $model,
      ]) ?>
  
4b12e92e   Mihail   work with margins...
21
22
      <?= Html::a('Вернуться', ['index'], ['class' => 'btn btn-primary']) ?>
  
021728bd   Administrator   Importers CRUD
23
  </div>