70f4f18b
Administrator
first_commit
|
1
2
3
4
|
<?php
use yii\helpers\Html;
use yii\grid\GridView;
|
dfeb2d10
Mihail
edit universal cs...
|
5
|
use yii\grid\SerialColumn;
|
70f4f18b
Administrator
first_commit
|
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/* @var $this yii\web\View */
/* @var $searchModel backend\models\CatalogSearch */
/* @var $dataProvider yii\data\ActiveDataProvider */
$this->title = 'Results';
$this->params['breadcrumbs'][] = $this->title;
?>
<div class="catalog-index">
<h1><?= Html::encode($this->title) ?></h1>
<?php // echo $this->render('_search', ['model' => $searchModel]); ?>
<?= GridView::widget([
'dataProvider' => $dataProvider,
|
dfeb2d10
Mihail
edit universal cs...
|
23
24
|
'columns' => [['class' => SerialColumn::className()],
'1',
|
999b9326
Mihail
add detectStartPo...
|
25
26
27
28
|
'2',
'3',
'4',
'5',]
|
70f4f18b
Administrator
first_commit
|
29
30
|
]); ?>
|
999b9326
Mihail
add detectStartPo...
|
31
32
|
|
693c46cb
Mihail
add base classes ...
|
33
34
|
<?= Html::a('Вернуться', ['parser/index'], ['class' => 'btn btn-primary', 'name' => 'Return',]) ?>
|
70f4f18b
Administrator
first_commit
|
35
|
</div>
|