Merge commit 'origin/fusionax' into account
[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         Promotion&nbsp;:
30         <input type="text" name="promo" value="{$promo}" size="5" maxlength="5" />
31         <input type="submit" value="GO" />
32       </td>
33     </tr>
34   </table>
35 </form>
36
37 {if t($decedes)}
38 <form action="admin/deaths/{$promo}/validate" id="deathDateList" method="post">
39   {xsrf_token_field}
40   <table class="bicol" summary="liste des dates de décès">
41     <tr>
42       <th>Nom</th>
43       <th>Date de décès</th>
44     </tr>
45     {iterate item=x from=$decedes}
46     <tr class="{cycle values="impair,pair"}">
47       <td>{$x.directory_name}</td>
48       <td class="center">
49         <input type="text" class="deathDate" name="{$x.hrpid}" value="{$x.deathdate}" size="10" maxlength="10" />
50       </td>
51     </tr>
52     {/iterate}
53     <tr>
54       <td class="center" colspan="2">
55         <input type="submit" value="Valider" />
56       </td>
57     </tr>
58   </table>
59 </form>
60
61 <script type="text/javascript">//<![CDATA[
62   {literal}
63   $('input.deathDate').change(
64     function ()
65     {
66       $(this).addClass('sendDate');
67     });
68   
69   $('#deathDateList').submit(
70     function ()
71     {
72       // Avoid sending useless data to the webserver
73       $('input.deathDate').not('.sendDate').attr('disabled', true);
74     });
75   {/literal}
76 //]]></script>
77 {/if}
78
79 {* vim:set et sw=2 sts=2 sws=2 enc=utf-8: *}