echo Html::encode($this->title);
?>
</h1>

        <hr>

        <div class = "row">

            <div class = 'col-xs-12 col-md-5 col-md-offset-1 col-lg-5'>
                <?php 
echo Standings::widget(['standings' => $teamParticipants]);
?>
            </div>

            <?php 
$collapseContent = Standings::widget(['standings' => $forecastedStandings]);
?>

            <div class = 'col-xs-12 col-md-5 col-md-offset-1 col-lg-5'>
                <?php 
echo Collapse::widget(['encodeLabels' => false, 'items' => [['label' => 'Если сбылись все Ваши прогнозы...', 'content' => $collapseContent]]]);
?>
            </div>

            <?php 
echo $this->render('_winners', ['winners' => $winners, 'tournament' => $tournament, 'additionalPoints' => $additionalPoints, 'totalAdditionalPoints' => $totalAdditionalPoints]);
?>


            <?php 
echo $this->render('_forecasters', ['forecasters' => $forecasters, 'tournament' => $tournament]);
<div class="row">
    <div class="col-xs-12 col-xs-offset-0 col-sm-offset-1 col-sm-10 tournaments-details">

        <h1 class = "text-center"><?php 
echo Html::encode($this->title);
?>
</h1>

        <hr>

        <div class = "row">

            <div class = 'col-xs-12 col-md-5 col-md-offset-1 col-lg-5'>
                <?php 
echo Standings::widget(['standings' => $teamParticipants]);
?>
            </div>

            <?php 
echo $this->render('_forecasters', ['forecasters' => $forecasters, 'tournament' => $tournament]);
?>
        </div>

        <hr>

        <h1 class = "text-center">Игры по турам</h1>
        <div class = 'row'>
            <?php 
echo $this->render('_games', ['tour_list' => $tour_list, 'tourGames' => $tourGames]);
?>