49 lines
1.2 KiB
PHP
49 lines
1.2 KiB
PHP
<?php
|
|
|
|
use yii\helpers\Html;
|
|
use yii\grid\GridView;
|
|
|
|
/* @var $this yii\web\View */
|
|
/* @var $searchModel common\models\TransferSearch */
|
|
/* @var $dataProvider yii\data\ActiveDataProvider */
|
|
|
|
$this->title = Yii::t('frontend/transfer', 'Transfers');
|
|
$this->params['breadcrumbs'][] = $this->title;
|
|
?>
|
|
<div class="transfer-index">
|
|
|
|
<h1><?= Html::encode($this->title) ?></h1>
|
|
<?php // echo $this->render('_search', ['model' => $searchModel]); ?>
|
|
|
|
<p>
|
|
<?= Html::a(Yii::t('frontend/transfer', 'Create Transfer'), ['create'], ['class' => 'btn btn-success']) ?>
|
|
</p>
|
|
|
|
<?= GridView::widget([
|
|
'dataProvider' => $dataProvider,
|
|
'filterModel' => $searchModel,
|
|
'columns' => [
|
|
['class' => 'yii\grid\SerialColumn'],
|
|
|
|
'id_transfer',
|
|
'id_discount',
|
|
'id_currency',
|
|
'id_object',
|
|
'status',
|
|
// 'type',
|
|
// 'item_price',
|
|
// 'count',
|
|
// 'money',
|
|
// 'money_currency',
|
|
// 'rate',
|
|
// 'id_user',
|
|
// 'comment',
|
|
// 'created_at',
|
|
// 'updated_at',
|
|
|
|
['class' => 'yii\grid\ActionColumn'],
|
|
],
|
|
]); ?>
|
|
|
|
</div>
|