Happy New Year!
[platal.git] / templates / newsletter / submit.tpl
1 {**************************************************************************}
2 {*                                                                        *}
3 {*  Copyright (C) 2003-2014 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>Proposer un article pour la prochaine Lettre mensuelle</h1>
24
25 {if t($submited)}
26
27 <p>
28 Ton article a bien été pris en compte.
29 </p>
30
31 <p>
32 Nous te recontacterons éventuellement (certainement vers la fin du mois) si nous avons des
33 renseignements à te demander à son sujet&nbsp;!
34 </p>
35
36 {else}
37
38
39 {if t($art)}
40
41 {if !$art->check()}
42 <p class='erreur'>
43 L'article que tu as proposé est trop long&nbsp;!<br />
44 Il te faut te limiter à 8 lignes de 68 caractères.
45 </p>
46 {/if}
47
48 <form action="nl/submit" method='post'>
49   <table class='bicol'>
50     <tr><th>Version texte</th></tr>
51     <tr id='text'>
52     <td><pre>{$art->toText()}</pre></td>
53     </tr>
54     <tr><th>Version html</th></tr>
55     <tr id='html'>
56       <td>
57         <div class='nl'>
58           {$art->toHtml()|smarty:nodefaults}
59         </div>
60       </td>
61     </tr>
62     {if $art->check()}
63     <tr>
64       <th>Soumettre</th>
65     </tr>
66     <tr>
67       <td>
68         Si tu es content de ton article, tu peux le soumettre.
69         Sinon, tu peux continuer à l'éditer en dessous.
70       </td>
71     </tr>
72     <tr>
73       <td class='center'>
74         <input type='hidden' value="{$smarty.request.title}" name='title' />
75         <input type='hidden' value="{$art->body()}" name="body" />
76         <input type='hidden' value="{$art->append()}" name='append' />
77         <input type='submit' name='valid' value='Soumettre' />
78       </td>
79     </tr>
80     {/if}
81   </table>
82 </form>
83
84 <br />
85
86 {/if}
87
88 <h2>Proposer un article</h2>
89
90 <p>
91 Tu peux <a href='nl/submit#conseils'>lire les conseils de rédaction</a> avant de proposer ton article.
92 </p>
93 <form action="nl/submit" method='post'>
94   <table class="bicol" cellpadding="3" cellspacing="0" summary="proposer un article">
95     <tr>
96       <th colspan='2'>Proposer un article</th>
97     </tr>
98     <tr class="impair">
99         <td class='titre'>Sujet</td>
100       <td>
101         <input size='60' maxlength='60' type='text' value='{$smarty.request.title}' name='title' />
102       </td>
103     </tr>
104     <tr class="pair">
105       <td class='titre'>Contenu</td>
106       <td>
107         <textarea onchange="{literal}$.post('nl/remaining/', {'body': this.value}, function(data) {$('#remaining').html(data)}){/literal}"
108                   onkeyup="{literal}$.post('nl/remaining/', {'body': this.value}, function(data) {$('#remaining').html(data)}){/literal}"
109                   cols="68" rows="8" name="body" >{if t($art)}{$art->body()}{/if}</textarea>
110       </td>
111     </tr>
112     <tr class="pair">
113       <td id="remaining" class="center" colspan="2"></td>
114     </tr>
115     <tr class="impair">
116       <td class='titre'>Ajouts (emails, contacts, tarifs, site web&hellip;)</td>
117       <td>
118         <textarea cols="68" rows="3" name='append'>{if t($art)}{$art->append()}{/if}</textarea>
119       </td>
120     </tr>
121     <tr class="pair smaller">
122       <td></td>
123       <td>
124         <a href="wiki_help/notitle" class="popup3">
125           {icon name=information title="Syntaxe wiki"} Voir les marqueurs de mise en forme autorisés
126         </a>
127       </td>
128     </tr>
129     <tr class='pair'>
130       <td colspan='2' class='center'>
131         <input type='submit' name='see' value='Visualiser' />
132       </td>
133     </tr>
134   </table>
135 </form>
136
137 <a id='conseils'></a>
138 {include wiki=Xorg.LettreMensuelle}
139
140 {/if}
141
142 {* vim:set et sw=2 sts=2 sws=2 enc=utf-8: *}