Blame view

frontend/views/events/index.php 275 Bytes
c7f222e2   Artem   first
1
2
3
4
5
6
7
8
9
10
11
12
  <?php
  use yii\widgets\ListView;
  ?>
  <div class="block-school-spots-wrap correct_index_display_block">
      <?php
      echo \yii\widgets\ListView::widget( [
          'dataProvider' => $dataProvider,
          'itemView'=>'_list_item',
          'summary'=>'',
      ] );
      ?>
  </div>