Adds a check on Google Apps accounts in checkdb.php.
[platal.git] / templates / xnetlists / create.tpl
1 {**************************************************************************}
2 {*                                                                        *}
3 {*  Copyright (C) 2003-2008 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>{$asso.nom}&nbsp;: Création d'une liste de diffusion</h1>
24
25 <p class="descr">
26 <strong>Note&nbsp;:</strong> les listes de diffusion sont un outil particulièrement adapté pour des
27 échanges entre 6 personnes ou plus (newsletter, débat interne au groupe ...). En revanche, elles
28 s'avèrent peu praticables pour des discussions plus restreintes.  Il est alors préférable
29 d'utiliser <a href="{$platal->ns}alias/create">un alias</a>, à la gestion beaucoup plus souple.
30 </p>
31 <p class="descr">
32 D'autre part, il est impossible d'inscrire une liste de diffusion à une autre liste de diffusion.
33 Si tu as besoin de cette fonctionnalité, il faut alors <strong>impérativement</strong> utiliser
34 <a href="{$platal->ns}alias/create">un alias</a> qui, lui, est capable de regrouper plusieurs listes.
35 </p>
36 <form action='{$platal->ns}lists/create' method='post'>
37   <table class="large">
38     <tr>
39       <th colspan='4'>Caractéristiques de la Liste</th>
40     </tr>
41     <tr>
42       <td><strong>Addresse&nbsp;souhaitée&nbsp;:</strong></td>
43       <td colspan='3'>
44         <input type='text' name='liste' value='{$smarty.post.liste}' />@{$asso.mail_domain}
45       </td>
46     </tr>
47     <tr>
48       <td><strong>Sujet (bref)&nbsp;:</strong></td>
49       <td colspan='3'>
50         <input type='text' name='desc' size='40' value="{$smarty.post.desc}" />
51       </td>
52     </tr>
53     <tr>
54       <td style="border: 0; border-right: 1px solid gray"><strong>Propriétés&nbsp;:</strong></td>
55       <td colspan='3' style="border: 0"></td>
56     </tr>
57     <tr>
58       <td style="border: 0; border-right: 1px solid gray">
59         visibilité&nbsp;:<br/><span style='font-size: xx-small;'>
60         (qui peut la voir dans la liste des listes&nbsp;?)</span>
61       </td>
62       <td style="border: 0">
63         <label><input type='radio' name='advertise' value='0'
64         {if $smarty.post.advertise && $smarty.post}checked='checked'{/if} />publique<br/>
65         <span style='font-size: xx-small;'>(tous les membres)</span></label>
66       </td>
67       <td colspan='2' style="border: 0">
68         <label><input type='radio' name='advertise' value='1'
69         {if !$smarty.post.advertise || !$smarty.post}checked='checked'{/if} />privée<br/>
70         <span style='font-size: xx-small;'>(seuls ceux inscrits à cette liste)</span></label>
71       </td>
72     </tr>
73     <tr>
74       <td style="border: 0; border-right: 1px solid gray">
75         diffusion&nbsp;:<br/><span style='font-size: xx-small;'>
76         (l'envoi d'un mail à cette liste est-il modéré&nbsp;?)</span>
77       </td>
78       <td style="border: 0">
79         <label><input type='radio' name='modlevel' value='0'
80         {if !$smarty.post.modlevel}checked='checked'{/if} />libre<br/><small>(non)</small></label>
81       </td>
82       <td style="border: 0">
83         <label><input type='radio' name='modlevel' value='1'
84         {if $smarty.post.modlevel eq 1}checked='checked'{/if} />restreinte<br/>
85         <small>(oui, si l'expéditeur n'appartient pas à la liste)</small></label>
86       </td>
87       <td style="border: 0">
88         <label><input type='radio' name='modlevel' value='2'
89         {if $smarty.post.modlevel eq 2}checked='checked'{/if} />modérée<br/>
90         <small>(oui, tout le temps)</small></label>
91       </td>
92     </tr>
93     <tr>
94       <td style="border: 0; border-right: 1px solid gray">
95         inscription&nbsp;:<br/><span style='font-size: xx-small;'>
96         (l'inscription à cette liste est-elle modérée&nbsp;?)</span>
97       </td>
98       <td style="border: 0">
99         <label><input type='radio' name='inslevel' value='0'
100         {if !$smarty.post.inslevel && $smarty.post}checked='checked'{/if} />libre<br/>
101         <small>(non)</small></label>
102       </td>
103       <td colspan='2' style="border: 0">
104         <label><input type='radio' name='inslevel' value='1'
105         {if $smarty.post.inslevel || !$smarty.post}checked='checked'{/if} />modérée<br/>
106         <small>(oui)</small></label>
107       </td>
108     </tr>
109   </table>
110   <p class="center"><input name='submit' type='submit' value="Créer !" /></p>
111 </form>
112
113 {* vim:set et sw=2 sts=2 sws=2 enc=utf-8: *}