55cb8469f8486d2f71766248f8244b50e034e5aa
[platal.git] / templates / include / flags.radio.tpl
1 {**************************************************************************}
2 {*                                                                        *}
3 {*  Copyright (C) 2003-2007 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 {if $display neq "mini"}
23   {if !$notable}
24     <tr>
25       <td colspan="5" class="pflags">
26   {/if}
27         <table class="flags" summary="Flags" cellpadding="0" cellspacing="0">
28           <tr>
29             <td class="vert">
30               <input type="radio" name="{$name}" value="public" {if $val eq 'public'}checked="checked"{/if} />
31             </td>
32             <td class="texte">
33               site public
34             </td>
35             <td class="orange">
36               <input type="radio" name="{$name}" value="ax" {if $val eq 'ax'}checked="checked"{/if} />
37             </td>
38             <td class="texte">
39               transmis à l'AX
40             </td>
41             <td class="rouge">
42               <input type="radio" name="{$name}" value="private" {if $val eq 'private'}checked="checked"{/if} />
43             </td>
44             <td class="texte">
45               privé
46             </td>
47             <td class="texte">
48               <a href="Xorg/FAQ?display=light#flags" class="popup_800x240">Quelle couleur ??</a>
49             </td>
50           </tr>
51         </table>
52   {if !$notable}
53       </td>
54     </tr>
55   {/if}
56 {else}
57             <td class="vert">
58               <input type="radio" name="{$name}" value="public" {if $val eq 'public'}checked="checked"{/if} />
59             </td>
60             <td class="orange">
61               <input type="radio" name="{$name}" value="ax" {if $val eq 'ax'}checked="checked"{/if} />
62             </td>
63             <td class="rouge">
64               <input type="radio" name="{$name}" value="private" {if $val eq 'private'}checked="checked"{/if} />
65             </td>
66 {/if}
67 {* vim:set et sw=2 sts=2 sws=2 enc=utf-8: *}