902c46982413e6e81ff21e1dcd50c540c13c3b53
[platal.git] / templates / admin / wiki.tpl
1 {**************************************************************************}
2 {*                                                                        *}
3 {*  Copyright (C) 2003-2007 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>Pages wiki du site</h1>
24
25 {literal}
26 <script type="text/javascript">
27 // <!--
28   function check_all_boxes(form,action) {
29     var boxes = document.getElementById(form).getElementsByTagName('input');
30     for (var i=0; i<boxes.length; i++) if (boxes[i].type == 'checkbox') {
31       if (action == 'toggle')
32         boxes[i].checked = !boxes[i].checked;
33       else
34         boxes[i].checked = action;
35     }
36     return false;
37   }
38 // -->
39 </script>
40 {/literal}
41
42 <p class="center">
43   {icon name=magnifier"} <a href="Site/RecentChanges">Voir les changements récents</a>
44   (<a href="Site/AllRecentChanges">Version verbeuse</a>)
45 </p>
46
47 <form action="admin/wiki/update" method="post" id="update_pages">
48 <table class="bicol">
49   <tr>
50     <th>
51       page
52     </th>
53     <th>
54       lecture
55     </th>
56     <th>
57       écriture
58     </th>
59     <th class="action">
60       action
61     </th>
62   </tr>
63 {foreach from=$wiki_pages key=cat item=pages}
64   <tr class="pair">
65     <td colspan="4" style="margin-top: 0; margin-bottom: 0; padding-top: 0; padding-bottom: 0; height: 20px">
66       <img src="images/k2.gif" alt="-" width="9" height="21" />
67       {$cat}
68     </td>
69   </tr>
70 {foreach from=$pages item=perm key=page name=pages}
71   <tr class="impair" onmouseover="this.className='pair';" onmouseout="this.className='impair';">
72     <td style="margin-top: 0; margin-bottom: 0; padding-top: 0; padding-bottom: 0; height: 20px">
73       {if $smarty.foreach.pages.last}
74       <img src="images/L.gif" alt="L" width="12" height="21" />
75       {else}
76       <img src="images/T.gif" alt="|" style="width: 12px: height: 21px" />
77       {/if}
78       <a href="{$cat}/{$page}">{$page}</a> <a href="{$cat}/{$page}?action=edit" class="indice">{icon name=page_edit title='éditer'}</a>
79     </td>
80     <td class="center" style="margin-top: 0; margin-bottom: 0; padding-top: 0; padding-bottom: 0; height: 20px">
81       {$perm.read}
82     </td>
83     <td class="center" style="margin-top: 0; margin-bottom: 0; padding-top: 0; padding-bottom: 0; height: 20px">
84       {$perm.edit}
85     </td>
86     <td class="action" style="margin-top: 0; margin-bottom: 0; padding-top: 0; padding-bottom: 0; height: 20px">
87       <input type="checkbox" name="{$cat}/{$page}"/>
88     </td>
89   </tr>
90 {/foreach}
91 {/foreach}
92   <tr class="pair">
93     <td class="action" colspan="4">
94       <span onclick="check_all_boxes('update_pages', true)">{icon name=tick title='tout cocher'}</span>
95       <span onclick="check_all_boxes('update_pages', false)">{icon name=cross title='tout décocher'}</span>
96       <span onclick="check_all_boxes('update_pages', 'toggle')">{icon name=arrow_refresh title='toggle'}</span>
97     </td>
98   </tr>
99   <tr class="pair">
100     <td>
101       Attribue les permissions aux pages cochées :
102     </td>
103     <td>
104       <select name="read">
105         <option value=""> - </option>
106         {html_options options=$perms_opts}
107       </select>
108     </td>
109     <td>
110       <select name="edit">
111         <option value=""> - </option>
112         {html_options options=$perms_opts}
113       </select>
114     </td>
115     <td class="option">
116       <input type="submit" value="ok"/>
117     </td>
118   </tr>
119 </table>
120 </form>
121 {* vim:set et sw=2 sts=2 sws=2: *}