af0fe1a4a2f0549b3bda22e8ba36753924d28cbb
[platal.git] / templates / xnet / groupes.tpl
1 {**************************************************************************}
2 {*                                                                        *}
3 {*  Copyright (C) 2003-2013 Polytechnique.org                             *}
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 {include file="xnet/include/descr.tpl"}
24
25 <table id="content" cellspacing="0" cellpadding="4">
26   <tr>
27     <td style="vertical-align: top">
28       <div class="cat {if $cat eq groupesx}sel{/if}"><a href="groups/groupesx">Groupes X</a></div>
29       <div class="cat {if $cat eq binets}sel{/if}"><a href="groups/binets">Binets</a></div>
30       <div class="cat {if $cat eq institutions}sel{/if}"><a href="groups/institutions">Institutions</a></div>
31       <div class="cat {if $cat eq promotions}sel{/if}"><a href="groups/promotions">Promotions</a></div>
32     </td>
33
34     {if $doms}
35     <td style="vertical-align: top">
36       {foreach from=$doms item=g}
37       <div class="cat {if $g.id eq $dom}sel{/if}">
38         <a href="groups/{$cat}/{$g.id}">{$g.nom}</a>
39       </div>
40       {/foreach}
41     </td>
42     {/if}
43
44     <td style="text-align:right;{if $doms} width: 180px{/if}">
45       {if $gps}
46       <table style="width: 100%">
47         {foreach from=$gps item=g name=all key=i}
48         {if $doms || $i is even}
49         <tr>
50         {/if}
51           <td class="oval{if $doms}2{/if} {if $cat eq promotions}{if $g.diminutif is odd}jone{else}rouje{/if}{/if}">
52             <a href="{$g.diminutif}/" {if $g.site}class="has_site"{/if}>{$g.nom}</a>
53           </td>
54         {if !$doms && $i is even && $smarty.foreach.all.last}<td></td>{/if}
55         {if $doms || $i is odd || $smarty.foreach.all.last}
56         </tr>
57         {/if}
58       {/foreach}
59       </table>
60       {/if}
61     </td>
62   </tr>
63 </table>
64
65 {* vim:set et sw=2 sts=2 sws=2 enc=utf-8: *}