File: /var/www/vhosts/creativefellows.nl/kika.creativefellows.nl/views/view.admin.php
<?php
require_once "header.php";
echo '<div class="cell small-12 medium-6 text-center">';
echo '<h1>Beheer</h1>';
echo '<h3>Spellen</h3>';
echo '<ul class="no-bullet games-list">';
foreach($data["games"] as $game)
{
echo '<li>';
echo '<a href="'. $router->pathFor('viewgamedetails',["id" => $game["game_id"]]) .'">'. $game["name"] .' ('. $game["count"] .'/'. $game["users"] .' spelers)</a>';
echo '<li>';
}
echo '<li><a href="'. $router->pathFor('addgame') .'" class="add">+ Nieuw spel</a><li>';
echo '</ul>';
echo '<h3>Gebruikers</h3>';
echo '<ul class="no-bullet games-list">';
echo '<li><a href="'. $router->pathFor('users') .'" class="">Bekijken</a><li>';
echo '</ul>';
echo '</div>';
require_once "footer.php";
?>