ソースを参照

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>

読み込み中…
キャンセル
保存