浏览代码

Merge branch 'dev'

prodstable
Guillaume 3 年前
父节点
当前提交
c93f65b17b
共有 1 个文件被更改,包括 10 次插入6 次删除
  1. +10
    -6
      producer/views/site/index.php

+ 10
- 6
producer/views/site/index.php 查看文件

@@ -194,18 +194,22 @@ $this->setPageTitle(Html::encode($producer->type.' à '.$producer->city)) ;
] ;
?>

<?= GridView::widget([
'dataProvider' => $dataProviderProducts,
'summary' => '',
'columns' => $columnsProducts
]); ?>
<?php if($dataProviderProducts->query->count()) : ?>
<?= GridView::widget([
'dataProvider' => $dataProviderProducts,
'summary' => '',
'columns' => $columnsProducts
]); ?>
<?php endif; ?>

<?php foreach($categories as $category): ?>
<h4><?= Html::encode($category->name) ?></h4>
<?php if($dataProviderProductsByCategories[$category->id]->query->count()): ?>
<h4><?= Html::encode($category->name) ?></h4>
<?= GridView::widget([
'dataProvider' => $dataProviderProductsByCategories[$category->id],
'summary' => '',
'columns' => $columnsProducts
]); ?>
<?php endif; ?>
<?php endforeach; ?>
</section>

正在加载...
取消
保存