654e241cb20c9bfd3c7ec8bbd675c7562e0de56f
[platal.git] / templates / newsletter / sync.tpl
1 {**************************************************************************}
2 {*                                                                        *}
3 {*  Copyright (C) 2003-2011 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 {if $users|@count eq 0}
24 <p>Tous les inscrits au groupe sont déjà inscrits à la newsletter.</p>
25 {else}
26 <form action="{$platal->ns}admin/nl/sync" method="post">
27   {xsrf_token_field}
28   <table cellspacing="2" cellpadding="0" class="tiny">
29     <tr>
30       <th>Nom</th>
31       <th>
32         <a href="javascript:toggleAll()">{icon name="arrow_refresh" title="Tout (dé)cocher"}</a>
33       </th>
34     </tr>
35     {foreach from=$users item=user}
36     <tr>
37       <td class="checkboxToggle">{profile user=$user promo=true}</td>
38       <td class="checkboxToggle"><input type="checkbox" class="user" name="add_users[{$user->id()}]" /></td>
39     </tr>
40     {/foreach}
41     <tr>
42       <td colspan="2" class="center">
43         <input type="submit" value="Inscrire à la newsletter" />
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.user');
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 {/if}
76
77 {* vim:set et sw=2 sts=2 sws=2 enc=utf-8: *}