<?php $app = require '../../../../app/inc.php';
$model = $app->model('Teamtable');
$teams = $model->getAll();
$app->view('template/header', ['title' => 'Endre lagtabell']);
$app->view('pages/race/configure/teams/index', ["teams" => $teams]);
$app->view('template/footer');