Blame view

common/modules/product/views/variant/create.php 531 Bytes
a0be9a4d   Karnovsky A   30062016
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
  <?php
  
  use yii\helpers\Html;
  
  
  /* @var $this yii\web\View */
  /* @var $model common\modules\product\models\Product */
  
  $this->title = Yii::t('product', 'Create Product');
  $this->params['breadcrumbs'][] = ['label' => Yii::t('product', 'Products'), 'url' => ['index']];
  $this->params['breadcrumbs'][] = $this->title;
  ?>
  <div class="product-create">
  
      <h1><?= Html::encode($this->title) ?></h1>
  
      <?= $this->render('_form', [
          'model' => $model,
41068668   Administrator   29.06.16
19
20
          'groups' => $groups,
          'stocks' => $stocks,
a0be9a4d   Karnovsky A   30062016
21
22
23
      ]) ?>
  
  </div>