Convert source code to UTF-8
[platal.git] / templates / admin / deces_promo.tpl
CommitLineData
0337d704 1{**************************************************************************}
2{* *}
5ddeb07c 3{* Copyright (C) 2003-2007 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
24
aacaf47f 25{foreach from=$new_deces item=i}
a7de4ef7 26<p class="erreur">Ajout du décès de {$i.name} le {$i.date}.</p>
aacaf47f 27{/foreach}
28
86f0a6af 29<form action="admin/deaths" method="post">
0337d704 30 <table class="tinybicol">
31 <tr>
949763a1 32 <td>
33 <input type="submit" value="GO" style="visibility: hidden" />
34 <input type="submit" value="&lt;&lt;" name="sub10" />
35 </td>
0337d704 36 <td><input type="submit" value="&lt;" name="sub01" /></td>
37 <td>
38 Promotion :
39 <input type="text" name="promo" value="{$promo}" size="4" maxlength="4" />
40 <input type="submit" value="GO" />
41 </td>
42 <td><input type="submit" value="&gt;" name="add01" /></td>
949763a1 43 <td>
44 <input type="submit" value="&gt;&gt;" name="add10" />
45 <input type="submit" value="GO" style="visibility: hidden" />
46 </td>
0337d704 47 </tr>
48 </table>
49</form>
50
86f0a6af 51<form action="admin/deaths/{$promo}/validate" method="post">
a7de4ef7 52 <table class="bicol" summary="liste des dates de décès">
0337d704 53 <tr>
54 <th>Nom</th>
a7de4ef7 55 <th>Date de décès</th>
0337d704 56 </tr>
57 {iterate item=x from=$decedes}
58 <tr class="{cycle values="impair,pair"}">
59 <td>{$x.nom} {$x.prenom}</td>
60 <td class="center">
61 <input type="text" name="{$x.matricule}" value="{$x.deces}" size="10" maxlength="10" />
62 </td>
63 </tr>
64 {/iterate}
65 <tr>
66 <td class="center" colspan="2">
86f0a6af 67 <input type="submit" value="Valider" />
0337d704 68 </td>
69 </tr>
70 </table>
71</form>
72
a7de4ef7 73{* vim:set et sw=2 sts=2 sws=2 enc=utf-8: *}