Happy New Year!
[platal.git] / templates / xnetgrp / non_active.tpl
CommitLineData
c329751f
SJ
1{**************************************************************************}
2{* *}
c441aabe 3{* Copyright (C) 2003-2014 Polytechnique.org *}
c329751f
SJ
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{if $users|@count}
24<form action="{$platal->ns}directory/unact" method="post">
25 {xsrf_token_field}
26 <table cellspacing="2" cellpadding="0" class="tiny">
27 <tr>
28 <th>Nom</th>
29 <th>Email</th>
30 <th>
31 <a href="javascript:toggleAll()">{icon name="arrow_refresh" title="Tout (dé)cocher"}</a>
32 </th>
33 </tr>
34 {foreach from=$users item=user}
35 <tr>
36 <td class="checkboxToggle">{profile user=$user promo=true}</td>
37 <td class="checkboxToggle">{$user->email}</td>
38 <td class="checkboxToggle"><input type="checkbox" class="moderate_email" name="enable_accounts[{$user->id()}]" /></td>
39 </tr>
40 {/foreach}
41 <tr>
42 <td colspan="3" class="center">
2d953324 43 <input type="submit" value="Activer les comptes" />
c329751f
SJ
44 </td>
45 </tr>
46 </table>
47
48 <script type="text/javascript">//<![CDATA[
49 {literal}
50 var toggleState = false;
51 function toggleAll() {
52 toggleState = !toggleState;
53 var boxes = $(':checkbox.moderate_email');
54 if (toggleState) {
55 boxes.attr('checked', 'checked');
56 } else {
57 boxes.removeAttr('checked');
58 }
59 }
60
61 $('.checkboxToggle').click(function (event) {
62 // Don't uncheck the checkbox when clicking it
63 if (event.target.tagName === 'INPUT') {
64 return;
65 }
66
67 var checkbox = $(this).parent().find(':checkbox');
68 checkbox = checkbox.attr('checked', !checkbox.attr('checked'));
69 event.stopPropagation();
70 });
71 {/literal}
72 //]]></script>
73
74</form>
75{else}
76<p>Tous les inscrits au groupe ont un compte leur permettant d'accéder aux pages du groupe.</p>
77{/if}
78
79{* vim:set et sw=2 sts=2 sws=2 enc=utf-8: *}