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