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

8 lines
244 B
PHP
Raw Normal View History

2022-02-07 10:09:16 +00:00
<?php
$app = require '../../../app/inc.php';
$model = $app->model('Teamtable');
$app->view('template/header', ['title' => 'Endre lagtabell']);
$app->view('teamtable/edit/index', ["teams" => $model->getTable()]);
$app->view('template/footer');