Adapts the profile_update to the new geocoding.
[platal.git] / templates / admin / deces_promo.tpl
1 {**************************************************************************}
2 {*                                                                        *}
3 {*  Copyright (C) 2003-2009 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="admin/deaths" method="post">
26   <table class="bicol">
27     <tr>
28       <td>
29         <input type="submit" value="GO" style="visibility: hidden" />
30         <input type="submit" value="&lt;&lt;" name="sub10" />
31       </td>
32       <td><input type="submit" value="&lt;"  name="sub01" /></td>
33       <td>
34         Promotion&nbsp;:
35         <input type="text" name="promo" value="{$promo}" size="4" maxlength="4" />
36         <input type="submit" value="GO" />
37       </td>
38       <td><input type="submit" value="&gt;"  name="add01" /></td>
39       <td>
40         <input type="submit" value="&gt;&gt;" name="add10" />
41         <input type="submit" value="GO" style="visibility: hidden" />
42       </td>
43     </tr>
44   </table>
45 </form>
46
47 <form action="admin/deaths/{$promo}/validate" id="deathDateList" method="post">
48   {xsrf_token_field}
49   <table class="bicol" summary="liste des dates de décès">
50     <tr>
51       <th>Nom</th>
52       <th>Date de décès</th>
53     </tr>
54     {iterate item=x from=$decedes}
55     <tr class="{cycle values="impair,pair"}">
56       <td>{$x.nom} {$x.prenom}</td>
57       <td class="center">
58         <input type="text" class="deathDate" name="{$x.matricule}" value="{$x.deces}" size="10" maxlength="10" />
59       </td>
60     </tr>
61     {/iterate}
62     <tr>
63       <td class="center" colspan="2">
64         <input type="submit" value="Valider" />
65       </td>
66     </tr>
67   </table>
68 </form>
69
70 <script type='text/javascript' src='javascript/jquery.js'></script>
71 <script type="text/javascript">//<![CDATA[
72   {literal}
73   $('input.deathDate').change(
74     function ()
75     {
76       $(this).addClass('sendDate');
77     });
78   
79   $('#deathDateList').submit(
80     function ()
81     {
82       // Avoid sending useless data to the webserver
83       $('input.deathDate').not('.sendDate').attr('disabled', true);
84     });
85   {/literal}
86 //]]></script>
87
88
89 {* vim:set et sw=2 sts=2 sws=2 enc=utf-8: *}