<td width="5" class="referees">
			<?php 
                $this->showMatchRefereesAsTooltip($game);
                ?>
			</td>
		<?php 
            }
            ?>

		<?php 
            if ($this->config['show_playground'] || $this->config['show_playground_alert']) {
                ?>
		<!-- show only playground or playgroundalert if playgrund differs from normal -->
			<td>
			<?php 
                JoomleagueHelperHtml::showMatchPlayground($game);
                ?>
			</td>
		<?php 
            }
            ?>

		<?php 
            if ($this->config['show_attendance_column']) {
                ?>
		<!-- show attendance -->
			<td class="right"><?php 
                if ($game->crowd > 0) {
                    echo $game->crowd;
                } else {
                    echo '&nbsp;';
		<?php 
        }
        if ($this->project->project_type == 'DIVISIONS_LEAGUE' && $this->config['show_division']) {
            ?>
		    <td>
			<?php 
            echo JoomleagueHelperHtml::showDivisonRemark($hometeam, $guestteam, $this->config);
            ?>
		    </td>
		<?php 
        }
        if ($this->config['show_playground'] || $this->config['show_playground_alert']) {
            ?>
		    <td>
			<?php 
            JoomleagueHelperHtml::showMatchPlayground($match);
            ?>
		    </td>
		<?php 
        }
        /*
        echo JoomleagueModelTeamPlan::showPlayground(	$hometeam,
        $guestteam,
        $match,
        $this->config['show_playground_alert'],
        $this->config['show_playground'],
        $match->project_id);
        */
        ?>

		<?php 
        <?php 
        if ($this->project->project_type == 'DIVISIONS_LEAGUE' && $this->config['show_division']) {
            ?>
            <td>
            <?php 
            echo JoomleagueHelperHtml::showDivisonRemark($hometeam, $guestteam, $this->config, $this->project);
            ?>
            </td>
        <?php 
        }
        if ($this->config['show_playground'] || $this->config['show_playground_alert']) {
            ?>
            <td>
            <?php 
            JoomleagueHelperHtml::showMatchPlayground($match, $this->config, $this->teams, $this->project);
            ?>
            </td>
        <?php 
        }
        /*
        echo JoomleagueModelTeamPlan::showPlayground(  $hometeam,
        $guestteam,
        $match,
        $this->config['show_playground_alert'],
        $this->config['show_playground'],
        $match->project_id);
        */
        ?>

        <?php