first reimport from platal
[platal.git] / templates / admin / deces_promo.tpl
1 {**************************************************************************}
2 {*                                                                        *}
3 {*  Copyright (C) 2003-2004 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
24
25 <form action="{$smarty.server.PHP_SELF}" method="get">
26   <table class="tinybicol">
27     <tr>
28       <td><input type="submit" value="&lt;&lt;" name="sub10" /></td>
29       <td><input type="submit" value="&lt;"  name="sub01" /></td>
30       <td>
31         Promotion :
32         <input type="text" name="promo" value="{$promo}" size="4" maxlength="4" />
33         <input type="submit" value="GO" />
34       </td>
35       <td><input type="submit" value="&gt;"  name="add01" /></td>
36       <td><input type="submit" value="&gt;&gt;" name="add10" /></td>
37     </tr>
38   </table>
39 </form>
40
41 <form action="{$smarty.server.REQUEST_URI}" method="post">
42   <table class="bicol" summary="liste des dates de décès">
43     <tr>
44       <th>Nom</th>
45       <th>Date de décès</th>
46     </tr>
47     {iterate item=x from=$decedes}
48     <tr class="{cycle values="impair,pair"}">
49       <td>{$x.nom} {$x.prenom}</td>
50       <td class="center">
51         <input type="text" name="{$x.matricule}" value="{$x.deces}" size="10" maxlength="10" />
52       </td>
53     </tr>
54     {/iterate}
55     <tr>
56       <td class="center" colspan="2">
57         <input type="hidden" name="promo" value="{$promo}" />
58         <input type="submit" name="valider" value="Valider" />
59       </td>
60     </tr>
61   </table>
62 </form>
63
64 {* vim:set et sw=2 sts=2 sws=2: *}