Fixes cache problems when updating an event image.
[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
86f0a6af 23<form action="admin/deaths" method="post">
9679c612 24 <table class="bicol">
0337d704 25 <tr>
949763a1 26 <td>
27 <input type="submit" value="GO" style="visibility: hidden" />
28 <input type="submit" value="&lt;&lt;" name="sub10" />
29 </td>
0337d704 30 <td><input type="submit" value="&lt;" name="sub01" /></td>
31 <td>
e8439508 32 Promotion&nbsp;:
0337d704 33 <input type="text" name="promo" value="{$promo}" size="4" maxlength="4" />
34 <input type="submit" value="GO" />
35 </td>
36 <td><input type="submit" value="&gt;" name="add01" /></td>
949763a1 37 <td>
38 <input type="submit" value="&gt;&gt;" name="add10" />
39 <input type="submit" value="GO" style="visibility: hidden" />
40 </td>
0337d704 41 </tr>
42 </table>
43</form>
44
7a9ebd51 45<form action="admin/deaths/{$promo}/validate" id="deathDateList" method="post">
fb1340e5 46 {xsrf_token_field}
a7de4ef7 47 <table class="bicol" summary="liste des dates de décès">
0337d704 48 <tr>
49 <th>Nom</th>
a7de4ef7 50 <th>Date de décès</th>
0337d704 51 </tr>
52 {iterate item=x from=$decedes}
53 <tr class="{cycle values="impair,pair"}">
54 <td>{$x.nom} {$x.prenom}</td>
55 <td class="center">
7a9ebd51 56 <input type="text" class="deathDate" name="{$x.matricule}" value="{$x.deces}" size="10" maxlength="10" />
0337d704 57 </td>
58 </tr>
59 {/iterate}
60 <tr>
61 <td class="center" colspan="2">
86f0a6af 62 <input type="submit" value="Valider" />
0337d704 63 </td>
64 </tr>
65 </table>
66</form>
67
7a9ebd51
OLF
68<script type="text/javascript">//<![CDATA[
69 {literal}
e97df22e
VZ
70 $('input.deathDate').change(function () {
71 $(this).addClass('sendDate');
72 });
7a9ebd51 73
e97df22e
VZ
74 $('#deathDateList').submit(function () {
75 // Avoid sending useless data to the webserver
76 $('input.deathDate').not('.sendDate').attr('disabled', true);
77 });
7a9ebd51
OLF
78 {/literal}
79//]]></script>
80
81
a7de4ef7 82{* vim:set et sw=2 sts=2 sws=2 enc=utf-8: *}