index.php 628 Bytes
<?php
use yii\helpers\Html;
use yii\bootstrap\ActiveForm;

/* @var $this yii\web\View */
/* @var $form yii\bootstrap\ActiveForm */
/* @var $model \frontend\models\SignupForm */
$this->registerCssFile('/css/spots.css');
$this->registerJsFile('/js/jquery.scrollbox.min.js');
$this->title = 'Школы';
$this->params['breadcrumbs'][] = $this->title;
?>

    <div class="block-school-spots-wrap correct_index_display_block">
        <?php
        echo \yii\widgets\ListView::widget( [
            'dataProvider' => $dataProvider,
            'itemView'=>'_one_school',
            'summary'=>'',
        ] );
        ?>
    </div>