Convert source code to UTF-8
[platal.git] / templates / newsletter / submit.tpl
CommitLineData
0337d704 1{**************************************************************************}
2{* *}
5ddeb07c 3{* Copyright (C) 2003-2007 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>
a7de4ef7 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
33renseignements à te demander à son sujet !
0337d704 34</p>
35
36{else}
37
38
39{if $art}
40
41{if !$art->check()}
42<p class='erreur'>
a7de4ef7 43L'article que tu as proposé est trop long !<br />
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'>
0337d704 49 <table class='tinybicol'>
50 <tr><th>Version texte</th></tr>
51 <tr id='text'>
52 <td><pre>{$art->toText()}</pre></td>
53 </tr>
54 {if $art->check()}
55 <tr><th>Version html</th></tr>
56 <tr id='html'>
57 <td>
58 <div class='nl'>
59 {$art->toHtml()|smarty:nodefaults}
60 </div>
61 </td>
62 </tr>
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.
a7de4ef7 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' />
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
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>
ff5e5034 101 <input size='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">
111 <td class='titre'>Ajouts (emails, contacts, tarifs, site web, ...)</td>
112 <td>
96991bab 113 <textarea cols="68" rows="3" name='append'>{if $art}{$art->append()}{/if}</textarea>
0337d704 114 </td>
115 </tr>
116 <tr class='pair'>
117 <td colspan='2' class='center'>
118 <input type='submit' name='see' value='visualiser' />
119 </td>
120 </tr>
121 </table>
122</form>
123
07d3870a 124<a id='conseils'></a>
9fc2d0d2 125{include file=../spool/wiki.d/cache_Xorg.LettreMensuelle.tpl included=1}
96991bab 126
0337d704 127{/if}
128
a7de4ef7 129{* vim:set et sw=2 sts=2 sws=2 enc=utf-8: *}