Blame view

backend/views/check-price/view.php 543 Bytes
9e481998   Mihail   add auto upload a...
1
2
3
4
5
6
7
8
9
10
  <?php
  use yii\helpers\Html;
  use yii\grid\GridView;
  use yii\grid\SerialColumn;
  use yii\bootstrap\Modal;
  
  
  /* @var $this yii\web\View */
  /* @var $searchModel backend\models\CatalogSearch */
  /* @var $dataProvider yii\data\ActiveDataProvider */
2cdc93f0   Mihail   add crud models f...
11
  $this->title = 'Прайс ' . Html::encode( "{$importer} от {$date}" );
9e481998   Mihail   add auto upload a...
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
  $this->params['breadcrumbs'][] = $this->title;
  
  ?>
  <div class="catalog-index">
  
      <h1><?= Html::encode($this->title) ?></h1>
  
      <?= GridView::widget( ['dataProvider' => $dataProvider,
  
          ] );
  
  
   ?>
  
  
  
  </div>
  <?php
  
  ?>