New "valid_date" smarty function to select purge dates
[platal.git] / templates / axletter / edit.tpl
1 {**************************************************************************}
2 {*                                                                        *}
3 {*  Copyright (C) 2003-2006 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 <h1>Edition de message</h1>
24
25 <form action="{$platal->pl_self()}" method="post">
26   {if $am}
27   {include file="axletter/letter.tpl"}
28
29   <p class="center">
30     <input type="hidden" name="id" value="{$id}" />
31     <input type="hidden" name="old_shortname" value="{$shortname}" />
32     <input type="hidden" name="saved" value="{$saved}" />
33     {if $echeance}
34     <input type="hidden" name="echeance" value="{$echeance}" />
35     {/if}
36     {if !$new}
37     <input type="submit" name="valid" value="Confirmer" />
38     {/if}
39   </p>
40   {/if}
41
42   <fieldset>
43     <legend>Sujet du mail : <input type="text" name="subject" value="{$subject}" size="60"/></legend>
44     <p class="center">
45       <a href="wiki_help" class="popup3">
46         {icon name=information title="Syntaxe wiki"} Voir les marqueurs de mise en forme autorisés
47       </a><br />
48       <strong>Titre : </strong><input type="text" name="title" value="{$title}" size="60" /><br />
49       <textarea name="body" rows="30" cols="78">{$body}</textarea><br />
50       <strong>Signature : </strong><input type="text" name="signature" value="{$signature}" size="60" />
51     </p>
52   </fieldset>
53
54   <table class="tinybicol">
55     <tr>
56       <th colspan="2">Options du message</th>
57     </tr>
58     <tr>
59       <td class="titre">Nom raccourci</td>
60       <td>
61         <input type="text" name="shortname" value="{$shortname}" size="16" maxlength="16" />
62         <span class="smaller">(uniquement lettres, chiffres ou -)</span>
63       </td>
64     </tr>
65     <tr>
66       <td class="titre">Promo min</td>
67       <td>
68         <input type="text" name="promo_min" value="{$promo_min|default:0}" size="4" maxlength="4" />
69         <span class="smaller">(0 pour pas de minimum... ex: 1947)</span>
70       </td>
71     </tr>
72     <tr>
73       <td class="titre">Promo max</td>
74       <td>
75         <input type="text" name="promo_max" value="{$promo_max|default:0}" size="4" maxlength="4" />
76         <span class="smaller">(0 pour pas de maximum... ex: 2001)</span>
77       </td>
78     </tr>
79     {if !$saved}
80     <tr>
81       <td class="titre">Echéance d'envoi</td>
82       <td>
83         le {valid_date name="echeance_date" value=$echeance_date from=3 to=15}
84         vers <select name="echeance_time">{$echeance_time|smarty:nodefaults}</select>
85       </td>
86     </tr>
87     {else}
88     <tr>
89       <td colspan="2" class="center">
90         Envoi au plus tard le {$echeance|date_format:"%x vers %Hh"}<br />
91         {if $is_xorg}
92         [<a href="ax/edit/valid" onclick="return confirm('Es-tu sûr de voiloir valider l\'envoi de ce message ?');">{*
93           *}{icon name=thumb_up} Valider l'envoi</a>]
94         {else}
95         [<a href="ax/edit/cancel" onclick="return confirm('Es-tu sûr de vouloir annuler l\'envoi de ce message ?');">{*
96           *}{icon name=thumb_down} Annuler l'envoi</a>]
97         {/if}
98       </td>
99     </tr>
100     {/if}
101   </table>
102
103   <p class="center">
104     <input type="hidden" name="id" value="{$id}" />
105     <input type="hidden" name="old_shortname" value="{$shortname}" />
106     <input type="hidden" name="saved" value="{$saved}" />
107     {if $echeance}
108     <input type="hidden" name="echeance" value="{$echeance}" />
109     {/if}
110     <input type="submit" name="valid" value="Aperçu" />
111     {if !$new}
112     <input type="submit" name="valid" value="Confirmer" />
113     {/if}
114   </p>
115 </form>
116
117 {* vim:set et sw=2 sts=2 sws=2 enc=utf-8: *}