0337d704 |
1 | {**************************************************************************} |
2 | {* *} |
8d84c630 |
3 | {* Copyright (C) 2003-2009 Polytechnique.org *} |
0337d704 |
4 | {* http://opensource.polytechnique.org/ *} |
5 | {* *} |
6 | {* This program is free software; you can redistribute it and/or modify *} |
7 | {* it under the terms of the GNU General Public License as published by *} |
8 | {* the Free Software Foundation; either version 2 of the License, or *} |
9 | {* (at your option) any later version. *} |
10 | {* *} |
11 | {* This program is distributed in the hope that it will be useful, *} |
12 | {* but WITHOUT ANY WARRANTY; without even the implied warranty of *} |
13 | {* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *} |
14 | {* GNU General Public License for more details. *} |
15 | {* *} |
16 | {* You should have received a copy of the GNU General Public License *} |
17 | {* along with this program; if not, write to the Free Software *} |
18 | {* Foundation, Inc., *} |
19 | {* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *} |
20 | {* *} |
21 | {**************************************************************************} |
22 | |
23 | <table id="liste"> |
24 | <tr> |
25 | <td class="fourth"> |
26 | <table> |
27 | <tr> |
7b2413f6 |
28 | <td class="oval"><a href="groups/groupesx">Groupes X</a></td> |
0337d704 |
29 | </tr> |
30 | <tr> |
31 | <td class="liste"> |
32 | {foreach from=$groupesx key=id item=dom} |
7b2413f6 |
33 | <a class="cat" href="groups/groupesx/{$id}">{$dom[0].domnom}</a> |
0337d704 |
34 | {foreach from=$dom item=g} |
7b2413f6 |
35 | <a href="{$g.diminutif}/">{$g.nom}</a> |
0337d704 |
36 | {/foreach} |
37 | {/foreach} |
38 | </td> |
39 | </tr> |
40 | </table> |
41 | </td> |
42 | |
43 | <td class="fourth"> |
44 | <table> |
45 | <tr> |
7b2413f6 |
46 | <td class="oval"><a href="groups/binets">Binets</a></td> |
0337d704 |
47 | </tr> |
48 | <tr> |
49 | <td class="liste"> |
50 | {foreach from=$binets key=id item=dom} |
7b2413f6 |
51 | <a class="cat" href="groups/binets/{$id}">{$dom[0].domnom}</a> |
0337d704 |
52 | {foreach from=$dom item=g} |
7b2413f6 |
53 | <a href="{$g.diminutif}/">{$g.nom}</a> |
0337d704 |
54 | {/foreach} |
55 | {/foreach} |
56 | </td> |
57 | </tr> |
58 | </table> |
59 | </td> |
60 | |
61 | <td class="fourth"> |
62 | <table> |
63 | <tr> |
7b2413f6 |
64 | <td class="oval"><a href="groups/promotions">Promotions</a></td> |
0337d704 |
65 | </tr> |
66 | <tr> |
67 | <td class="listec"> |
68 | {iterate from=$promos item=g} |
7b2413f6 |
69 | <a href="{$g.diminutif}/">{$g.nom}</a> |
0337d704 |
70 | {/iterate} |
71 | </td> |
72 | </tr> |
73 | </table> |
74 | </td> |
75 | |
76 | <td class="fourth"> |
77 | <table> |
78 | <tr> |
7b2413f6 |
79 | <td class="oval"><a href="groups/institutions">Institutions</a></td> |
0337d704 |
80 | </tr> |
81 | <tr> |
82 | <td class="listec"> |
83 | {iterate from=$inst item=g} |
7b2413f6 |
84 | <a href="{$g.diminutif}/">{$g.nom}</a> |
0337d704 |
85 | {/iterate} |
86 | </td> |
87 | </tr> |
88 | </table> |
89 | </td> |
90 | </tr> |
91 | </table> |
92 | |
a7de4ef7 |
93 | {* vim:set et sw=2 sts=2 sws=2 enc=utf-8: *} |