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/teamtable/edit/index.php

9 lines
274 B
PHP
Raw Normal View History

2022-03-15 17:20:50 +00:00
<?php $app = require '../../../../app/inc.php';
$model = $app->model('Teamtable');
$teams = $model->getAll();
$app->view('template/header', ['title' => 'Endre lagtabell']);
$app->view('pages/race/teamtable/edit/index', ["teams" => $teams]);
$app->view('template/footer');