I think JMY will be happy :
[platal.git] / templates / xnet / groupe / annuaire-admin.tpl
CommitLineData
3c8acb8e 1{**************************************************************************}
2{* *}
3{* Copyright (C) 2003-2004 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>Abonnés à des listes non présents dans l'annuaire</h1>
24
25<h2>Polytechniciens</h2>
26
27<ul>
28 {foreach from=$not_in_group_x item=n}
29 <li>{$n} [<a href='membres-edit.php?new=x&email={$n}' class='popup'>l'inscrire</a>]</li>
30 {foreachelse}
31 <li><em>tous les polytechniciens présents sur les listes sont inscrits à l'annuaire du groupe.</em></li>
32 {/foreach}
33</ul>
34
35<h2>non Polytechniciens</h2>
36<ul>
37 {foreach from=$not_in_group_ext item=n}
38 <li>{$n} [<a href='membres-edit.php?new=ext&email={$n}' class='popup'>l'inscrire</a>]</li>
39 {foreachelse}
40 <li><em>tous les non-polytechniciens présents sur les listes sont inscrits à l'annuaire du groupe.</em></li>
41 {/foreach}
42</ul>
43
229cb653 44<h2>Comparer une liste et l'annuaire</h2>
45
46<table cellspacing="2" cellpadding="0" class="tiny">
47 <tr>
48 <th>Liste</th>
49 <th>Description</th>
50 <th></th>
51 </tr>
52 {foreach from=$lists item=l}
53 <tr>
54 <td>{$l.list}</td>
55 <td>{$l.desc}</td>
56 <td><a href="listes-sync.php?liste={$l.list}">synchro</a></td>
57 </tr>
58 {/foreach}
59</table>
60
3c8acb8e 61{* vim:set et sw=2 sts=2 sws=2: *}