init
[garradin.git] / www / admin / compta / exercices / index.php
1 <?php
2 namespace Garradin;
3
4 require_once __DIR__ . '/../_inc.php';
5
6 $e = new Compta_Exercices;
7
8 $tpl->assign('liste', $e->getList());
9 $tpl->assign('current', $e->getCurrent());
10
11 $tpl->display('admin/compta/exercices/index.tpl');
12
13 ?>