This repository has been archived on 2023-01-06. You can view files and clone it, but cannot push or open issues or pull requests.
web/public/race/configure/index.php
2022-04-26 19:55:10 +00:00

11 lines
316 B
PHP

<?php $app = require '../../../app/inc.php';
use App\Teamtable\TeamMapper;
$team_mapper = new TeamMapper($app->database->conn);
$teams = $team_mapper->getAll();
$app->view('template/header', ['title' => 'Konfigurer']);
$app->view('pages/race/configure/index', ["teams" => $teams]);
$app->view('template/footer');