Blame view

common/modules/rubrication/views/tax-group/create.php 789 Bytes
d8c1a2e0   Yarik   Big commit artbox
1
  <?php

d55d2fe0   Yarik   Multilanguage
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
      

      use common\modules\rubrication\models\TaxGroup;

      use common\modules\rubrication\models\TaxGroupLang;

      use yii\helpers\Html;

      use yii\web\View;

      

      /**

       * @var View           $this

       * @var TaxGroup       $model

       * @var TaxGroupLang[] $model_langs

       */

      $this->title = Yii::t('rubrication', 'Create Tax Group');

      $this->params[ 'breadcrumbs' ][] = [

          'label' => Yii::t('rubrication', 'Tax Groups'),

          'url'   => [ 'index' ],

      ];

      $this->params[ 'breadcrumbs' ][] = $this->title;

d8c1a2e0   Yarik   Big commit artbox
19
20
  ?>

  <div class="tax-group-create">

d55d2fe0   Yarik   Multilanguage
21
      

d8c1a2e0   Yarik   Big commit artbox
22
      <h1><?= Html::encode($this->title) ?></h1>

d55d2fe0   Yarik   Multilanguage
23
      

d8c1a2e0   Yarik   Big commit artbox
24
      <?= $this->render('_form', [

d55d2fe0   Yarik   Multilanguage
25
26
          'model'       => $model,

          'model_langs' => $model_langs,

d8c1a2e0   Yarik   Big commit artbox
27
28
29
      ]) ?>

  

  </div>