Updated Showing the pairings of a specific round (markdown)

Jeroen De Meerleer 2019-05-01 15:34:22 +02:00
parent 0a768ecae2
commit ed065c569b

@ -19,6 +19,6 @@ $pairings = $tournament->getRoundByNo($_GET['round'])->getPairings();
foreach($pairings as $pairing) {
$player = $pairing->getPlayer()->getName();
$opponent = $pairing->getOpponent()->getName();
$color = $pairing->getColor()- >getColor()->getKey();
$color = $pairing->getColor()->getKey();
echo $player . ' against ' . $opponent . ' using ' . $color;
}