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/teams/index.php
2022-04-14 20:59:42 +00:00

11 lines
330 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' => 'Endre lagtabell']);
$app->view('pages/race/configure/teams/index', ["teams" => $teams]);
$app->view('template/footer');