Blame view

backend/views/margins-groups/create.php 520 Bytes
7bfae493   Administrator   Importers CRUD
1
2
3
4
5
6
7
8
  <?php
  
  use yii\helpers\Html;
  
  
  /* @var $this yii\web\View */
  /* @var $model common\models\MarginsGroups */
  
25545a10   Administrator   VItaliy 30.11.2015
9
  $this->title = 'Добавить Margins Groups';
7bfae493   Administrator   Importers CRUD
10
11
12
13
14
15
16
17
18
  $this->params['breadcrumbs'][] = ['label' => 'Margins Groups', 'url' => ['index']];
  $this->params['breadcrumbs'][] = $this->title;
  ?>
  <div class="margins-groups-create">
  
      <h1><?= Html::encode($this->title) ?></h1>
  
      <?= $this->render('_form', [
          'model' => $model,
03bffb3b   Administrator   Importers CRUD
19
20
          'importers' => $importers,
          'margin'  => $margin,
7bfae493   Administrator   Importers CRUD
21
22
23
      ]) ?>
  
  </div>