<?php
require "inc/include.php";
$title = "Accueil";
require "inc/header.php";
?>
<div class="col-sm-10 col-sm-offset-1 main">
    <h1>Matchs à venir</h1>
    <table class="table">
        <thead>
            <tr>
                <th>Date</th>
                <th>Adversaire</th>
                <th>Lieu</th>
                <th>Notre score</th>
                <th>Score adverse</th>
                <th>Modifier</th>
                <th>Supprimer</th>
            </tr>
        </thead>
        <tbody>
        <?php
		$matchs = $db->getMatchsNonCommences();
        foreach($matchs as $match)
        {
        ?>
            <tr>
                <td><?php echo date("d-m-Y H:i", $match['date']); ?></td>
                <td><?php echo $match['nom']; ?></td>
                <td><?php echo $match['lieu']; ?></td>
                <td><?php echo $match['scoreNous']; ?></td>
                <td><?php echo $match['scoreEux']; ?></td>
                <td><a href="feuilleDeMatch.php?matchId=<?php echo $match['id']; ?>" class="btn btn-primary btn-xs"><?php echo ($match['date'] < time() ? "Entrer un résultat" : "Feuille de match"); ?></a></td>
                <td><a href="modifierMatch.php?matchId=<?php echo $match['id']; ?>" class="btn btn-primary btn-xs">Modifier le match</a></td>
                <td><a href="supprimerMatch.php?matchId=<?php echo $match['id']; ?>" class="btn btn-danger btn-xs">Supprimer le match</a></td>
            </tr>
        <?php
        }
        ?>
        </tbody>
    </table>
</div>
<?php
require "inc/footer.php";
?>