50 lines
959 B
PHP
50 lines
959 B
PHP
<?php
|
|
|
|
use yii\helpers\Html;
|
|
use yii\grid\GridView;
|
|
use yii\widgets\ListView;
|
|
use yii\base\Widget;
|
|
|
|
/* @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;
|
|
?>
|
|
<style>
|
|
.dl-transfer{
|
|
margin-bottom: 0px;
|
|
}
|
|
|
|
.item-transfer{
|
|
border: 1px solid #b4b4b4;
|
|
margin-top: 12px;
|
|
padding-top: 6px;
|
|
padding-bottom: 6px;
|
|
}
|
|
|
|
|
|
|
|
</style>
|
|
|
|
<div class="transfer-index">
|
|
|
|
<h1><?= Html::encode($this->title) ?></h1>
|
|
<?php echo $this->render('_search', ['model' => $searchModel]); ?>
|
|
<?php echo $this->render('_index_stat', ['searchModel' => $searchModel]); ?>
|
|
|
|
|
|
|
|
|
|
|
|
<?php echo ListView::widget([
|
|
|
|
'dataProvider' => $dataProvider,
|
|
'itemView' => '_view' ,
|
|
'itemOptions' => ['class' => 'item-transfer']
|
|
] )
|
|
?>
|
|
|
|
</div>
|