add inventory group
This commit is contained in:
21
backend/views/inventory-group/update.php
Normal file
21
backend/views/inventory-group/update.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
use yii\helpers\Html;
|
||||
|
||||
/* @var $this yii\web\View */
|
||||
/* @var $model common\models\InventoryGroup */
|
||||
|
||||
$this->title = Yii::t('common/inventory_group', 'Leltár csoport módosítása' );
|
||||
$this->params['breadcrumbs'][] = ['label' => Yii::t('common/inventory_group', 'Inventory Groups'), 'url' => ['index']];
|
||||
$this->params['breadcrumbs'][] = ['label' => $model->name, 'url' => ['view', 'id' => $model->id_inventory_group]];
|
||||
$this->params['breadcrumbs'][] = Yii::t('common/inventory_group', 'Update');
|
||||
?>
|
||||
<div class="inventory-group-update">
|
||||
|
||||
<h1><?= Html::encode($this->title) ?></h1>
|
||||
|
||||
<?= $this->render('_form', [
|
||||
'model' => $model,
|
||||
]) ?>
|
||||
|
||||
</div>
|
||||
Reference in New Issue
Block a user