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

9 lines
266 B
PHP
Raw Normal View History

2022-03-07 06:13:17 +00:00
<?php $app = require '../../../app/inc.php';
2022-02-07 10:09:16 +00:00
$model = $app->model('Teamtable');
2022-03-07 06:13:17 +00:00
$teams = $model->getAll();
2022-02-28 04:51:22 +00:00
2022-02-07 10:09:16 +00:00
$app->view('template/header', ['title' => 'Endre lagtabell']);
2022-02-28 04:51:22 +00:00
$app->view('pages/teamtable/edit/index', ["teams" => $teams]);
2022-02-07 10:09:16 +00:00
$app->view('template/footer');