2f25da09
Yarik
first commit
|
1
2
3
4
5
6
7
8
9
10
11
|
<?php
use artweb\artbox\ecommerce\models\TaxGroup;
use artweb\artbox\ecommerce\models\TaxGroupLang;
use yii\helpers\Html;
use yii\web\View;
/**
* @var View $this
* @var TaxGroup $model
* @var TaxGroupLang[] $modelLangs
|
2e22f66f
Yarik
Links fixed
|
12
|
* @var int $level
|
2f25da09
Yarik
first commit
|
13
14
15
16
|
*/
$this->title = Yii::t('rubrication', 'Create Tax Group');
$this->params[ 'breadcrumbs' ][] = [
'label' => Yii::t('rubrication', 'Tax Groups'),
|
2e22f66f
Yarik
Links fixed
|
17
18
19
20
|
'url' => [
'index',
'level' => $level,
],
|
2f25da09
Yarik
first commit
|
21
22
23
24
25
26
27
|
];
$this->params[ 'breadcrumbs' ][] = $this->title;
?>
<div class="tax-group-create">
<h1><?= Html::encode($this->title) ?></h1>
|
2e22f66f
Yarik
Links fixed
|
28
29
30
31
32
33
34
|
<?= $this->render(
'_form',
[
'model' => $model,
'modelLangs' => $modelLangs,
]
) ?>
|
2f25da09
Yarik
first commit
|
35
36
|
</div>
|