Happy New Year!
[platal.git] / templates / xnetgrp / annuaire-admin.tpl
CommitLineData
3c8acb8e 1{**************************************************************************}
2{* *}
5e1513f6 3{* Copyright (C) 2003-2011 Polytechnique.org *}
3c8acb8e 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
a7de4ef7 23<h1>Abonnés à des listes non présents dans l'annuaire</h1>
3c8acb8e 24
25<h2>Polytechniciens</h2>
26
27<ul>
28 {foreach from=$not_in_group_x item=n}
07daef84 29 <li>{$n} [<a href='{$platal->ns}member/new/{$n}?token={xsrf_token}' class='popup'>l'inscrire</a>]</li>
3c8acb8e 30 {foreachelse}
a7de4ef7 31 <li><em>tous les polytechniciens présents sur les listes sont inscrits à l'annuaire du groupe.</em></li>
3c8acb8e 32 {/foreach}
33</ul>
34
77af6562 35<h2>Non polytechniciens</h2>
3c8acb8e 36<ul>
37 {foreach from=$not_in_group_ext item=n}
07daef84 38 <li>{$n} [<a href='{$platal->ns}member/new/{$n}?token={xsrf_token}' class='popup'>l'inscrire</a>]</li>
3c8acb8e 39 {foreachelse}
a7de4ef7 40 <li><em>tous les non-polytechniciens présents sur les listes sont inscrits à l'annuaire du groupe.</em></li>
3c8acb8e 41 {/foreach}
42</ul>
43
77af6562 44<h1>Comparer une liste et l'annuaire</h1>
229cb653 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>
7b2413f6 56 <td><a href="{$platal->ns}lists/sync/{$l.list}">synchro</a></td>
229cb653 57 </tr>
58 {/foreach}
59</table>
60
a7de4ef7 61{* vim:set et sw=2 sts=2 sws=2 enc=utf-8: *}