= Html::a(Yii::t('app', 'Update'), ['update', 'id' => $model->id], ['class' => 'btn btn-primary']) ?>
= Html::a(Yii::t('app', 'Delete'), ['delete', 'id' => $model->id], [
'class' => 'btn btn-danger',
'data' => [
'confirm' => Yii::t('app', 'Are you sure you want to delete this item?'),
'method' => 'post',
],
]) ?>
= Html::a(Yii::t('app', 'AddLot ID'), ['lots/create'], ['class' => 'btn btn-primary']) ?>
*/ ?>
= DetailView::widget([
'model' => $model,
'attributes' => [
'id',
'name',
[
'attribute' => 'dogovor_id',
'value' => $dogovor,
'format' => 'raw',
],
//'address',
'payment_term',
//'payment_order',
'member_require',
'auction_date',
'bidding_date',
'term_procedure',
[
'label' => \Yii::t('app', 'Requisites ID'),
'value' => $model->requisite->account . ' / ' . $model->requisite->bank,
],
],
]) ?>