server/onyx/include/team/exercice.php
Quentin Grosyeux 33935063a4 New templates
2013-11-04 23:20:16 +01:00

22 lines
371 B
PHP

<?php
if(!defined('ONYX')) exit;
//TOP10
$template->assign("top10", Team::get_top(10));
//RANK
$template->assign("my_team", new Team($TEAM));
//BEGIN LISTING THEMES
$template->assign("themes", Theme::get_themes());
$exercice = new Exercice($EXERCICE);
$template->assign("Exercice", $exercice);
//$template->assign("Number", $ex_number);
return "teams/exercice";