add ticket original end and original price
add helper links to related object in admin
This commit is contained in:
@@ -30,4 +30,23 @@ $this->params['breadcrumbs'][] = $this->title;
|
||||
],
|
||||
]) ?>
|
||||
|
||||
<?php
|
||||
$customer = $model->customer;
|
||||
if (isset($customer)) {
|
||||
?>
|
||||
<?= DetailView::widget(
|
||||
['model' => $customer,
|
||||
'attributes' => [
|
||||
[
|
||||
'attribute' => 'id_customer',
|
||||
'format' => 'raw',
|
||||
'value' => Html::a($customer->name, ['customer/view', 'id' => $customer->id_customer]),
|
||||
'label' => 'Vendég'
|
||||
|
||||
]
|
||||
]]) ?>
|
||||
<?php
|
||||
}
|
||||
?>
|
||||
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user