37 lines
834 B
PHP
37 lines
834 B
PHP
<?php
|
|
|
|
use yii\helpers\Html;
|
|
use yii\widgets\DetailView;
|
|
|
|
/* @var $this yii\web\View */
|
|
/* @var $model common\models\Inventory */
|
|
|
|
$this->title = $model->id_inventory;
|
|
$this->params['breadcrumbs'][] = ['label' => Yii::t('common/inventory', 'Leltár lista'), 'url' => ['index']];
|
|
$this->params['breadcrumbs'][] = "Leltár";
|
|
?>
|
|
<div class="inventory-view">
|
|
|
|
<h1><?= Html::encode("Leltár") ?></h1>
|
|
|
|
|
|
<?= DetailView::widget([
|
|
'model' => $model,
|
|
'attributes' => [
|
|
'id_inventory',
|
|
['attribute'=>'id_user',
|
|
'value'=>$model->userName
|
|
],
|
|
'created_at:datetime',
|
|
],
|
|
]) ?>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
<p>
|
|
<?= Html::a(Yii::t('common/inventory', 'Új termék'), ['inventory-item/create','id' =>$model->id_inventory], ['class' => 'btn btn-success']) ?>
|
|
</p>
|
|
|