Merge commit 'origin/fusionax' into account
[platal.git] / templates / admin / deces_promo.tpl
CommitLineData
0337d704 1{**************************************************************************}
2{* *}
8d84c630 3{* Copyright (C) 2003-2009 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
86f0a6af 25<form action="admin/deaths" method="post">
0337d704 26 <table class="tinybicol">
27 <tr>
949763a1 28 <td>
e8439508 29 Promotion&nbsp;:
dcefa8f7 30 <input type="text" name="promo" value="{$promo}" size="5" maxlength="5" />
0337d704 31 <input type="submit" value="GO" />
32 </td>
0337d704 33 </tr>
34 </table>
35</form>
36
dcefa8f7 37{if t($decedes)}
7a9ebd51 38<form action="admin/deaths/{$promo}/validate" id="deathDateList" method="post">
fb1340e5 39 {xsrf_token_field}
a7de4ef7 40 <table class="bicol" summary="liste des dates de décès">
0337d704 41 <tr>
42 <th>Nom</th>
a7de4ef7 43 <th>Date de décès</th>
0337d704 44 </tr>
45 {iterate item=x from=$decedes}
46 <tr class="{cycle values="impair,pair"}">
dcefa8f7 47 <td>{$x.directory_name}</td>
0337d704 48 <td class="center">
dcefa8f7 49 <input type="text" class="deathDate" name="{$x.hrpid}" value="{$x.deathdate}" size="10" maxlength="10" />
0337d704 50 </td>
51 </tr>
52 {/iterate}
53 <tr>
54 <td class="center" colspan="2">
86f0a6af 55 <input type="submit" value="Valider" />
0337d704 56 </td>
57 </tr>
58 </table>
59</form>
60
7a9ebd51
OLF
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>
dcefa8f7 77{/if}
7a9ebd51 78
a7de4ef7 79{* vim:set et sw=2 sts=2 sws=2 enc=utf-8: *}