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

11 lines
330 B
PHP
Raw Normal View History

2022-03-15 17:20:50 +00:00
<?php $app = require '../../../../app/inc.php';
2022-03-30 19:11:34 +00:00
use App\Teamtable\TeamMapper;
2022-03-15 17:20:50 +00:00
2022-04-14 20:59:42 +00:00
$team_mapper = new TeamMapper($app->database->conn);
2022-03-30 19:11:34 +00:00
2022-04-14 20:59:42 +00:00
$teams = $team_mapper->getAll();
2022-03-15 17:20:50 +00:00
$app->view('template/header', ['title' => 'Endre lagtabell']);
2022-03-19 21:22:24 +00:00
$app->view('pages/race/configure/teams/index', ["teams" => $teams]);
2022-03-15 17:20:50 +00:00
$app->view('template/footer');