Isolate all footers into footer.html, so we can more easily change it.
[cocanwiki.git] / templates / users.html
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
2 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
3 <head>
4 <title>Users</title>
5 <meta name="author" content="http://www.merjis.com/" />
6 <link rel="stylesheet" href="::theme_css_html_tag::" type="text/css" title="Standard"/>
7 <link rel="alternate stylesheet" href="/_css/easytoread.css" type="text/css" title="High contrast, big fonts"/>
8 <link rel="stylesheet" href="/_css/users.css" type="text/css" title="Standard"/>
9 </head><body>
10
11 <h1>Users</h1>
12
13 <ul class="menu">
14 <li class="first"><a href="/_bin/invite_user_form.cmo">Invite someone to join</a></li>
15 <li><a href="/_bin/create_user_form.cmo">Create a user account</a></li>
16 </ul>
17
18 <table id="users">
19 <tr>
20 <th rowspan="2"> Username </th>
21 <th rowspan="2"> Email address </th>
22 <th rowspan="2"> Registration </th>
23 <th colspan="6"> Permissions </th>
24 </tr>
25 <tr>
26 <th> Edit </th>
27 <th> Manage users </th>
28 <th> Manage contacts </th>
29 <th> Manage site </th>
30 <th> Edit global stylesheet </th>
31 <th> Import mail </th>
32 </tr>
33
34 ::table(users)::
35 <tr>
36 <td> <a href="/_bin/edit_user_form.cmo?userid=::userid::" title="Modify details, permissions, set password, or delete this user"><strong>::name_html::</strong></a> </td>
37 <td> ::email_html:: </td>
38 <td> ::registration_date_html:: </td>
39 <td> ::if(can_edit)::<img src="/_graphics/tick.png" width="10" height="10" alt="Can edit"/>::end:: </td>
40 <td> ::if(can_manage_users)::<img src="/_graphics/tick.png" width="10" height="10" alt="Can manage users"/>::end:: </td>
41 <td> ::if(can_manage_contacts)::<img src="/_graphics/tick.png" width="10" height="10" alt="Can manage contacts"/>::end:: </td>
42 <td> ::if(can_manage_site)::<img src="/_graphics/tick.png" width="10" height="10" alt="Can manage site"/>::end:: </td>
43 <td> ::if(can_edit_global_css)::<img src="/_graphics/tick.png" width="10" height="10" alt="Can edit global stylesheet"/>::end:: </td>
44 <td> ::if(can_import_mail)::<img src="/_graphics/tick.png" width="10" height="10" alt="Can import mail"/>::end:: </td>
45 </tr>
46 ::end::
47
48 </table>
49
50 <h2>Explanation of permissions</h2>
51
52 <dl>
53 <dt> <strong>Edit</strong> </dt>
54 <dd>
55 <p>
56 If set, user may:
57 </p>
58 <ul>
59 <li>view recent changes</li>
60 <li>view older versions of pages</li>
61 <li>edit pages</li>
62 <li>edit stylesheets</li>
63 <li>upload, delete images</li>
64 <li>upload, delete files</li>
65 <li>restore old versions of pages</li>
66 </ul>
67
68 <p>
69 <strong>Important note:</strong>
70 If your site is configured as a <q>wiki</q> then anybody has
71 edit permissions, regardless of whether they are logged in,
72 and regardless of the setting of the <q>Edit</q> permission.
73 Ask the web server administrator about this setting.
74 </p>
75 </dd>
76
77 <dt> <strong>Manage users</strong> </dt>
78 <dd>
79
80 <p>
81 If set, user may:
82 </p>
83
84 <ul>
85 <li>view list of users</li>
86 <li>edit user permissions</li>
87 <li>delete users</li>
88 <li>create user accounts</li>
89 </ul>
90
91 </dd>
92
93 <dt> <strong>Manage contacts</strong> </dt>
94 <dd>
95
96 <p>
97 If set, user may view and change the list of email
98 addresses associated with contact forms, and create
99 and delete contact forms.
100 </p>
101
102 </dd>
103
104 <dt> <strong>Manage site</strong> </dt>
105 <dd>
106
107 <p>
108 If set, user may:
109 </p>
110
111 <ul>
112 <li>control the global theme for the site</li>
113 <li>set whether anonymous editing and signup are allowed (<strong>note:</strong> this will allow them to indirectly create extra user accounts)</li>
114 <li>set email address for feedback</li>
115 </ul>
116
117 </dd>
118
119 <dt> <strong>Edit global stylesheet</strong> </dt>
120 <dd>
121
122 <p>
123 If set, user may edit the global stylesheet which controls
124 the look and feel of the site across all pages.
125 </p>
126
127 </dd>
128
129 <dt> <strong>Import mail</strong> </dt>
130 <dd>
131
132 <p>
133 If set, user may import e-mail.
134 </p>
135
136 </dd>
137
138 </dl>
139
140 <ul id="topmenu" class="menu">
141 <li class="first"> <a href="/">Home&nbsp;page</a> </li>
142 <li> <a href="/_sitemap">Sitemap</a> </li>
143 <li> <a href="/_recent">Recent&nbsp;changes</a> </li>
144 </ul>
145
146 <div id="menu_div">
147 <ul id="bottommenu" class="menu">
148 <li class="first"> <a href="/">Home&nbsp;page</a> </li>
149 ::table(sitemenu)::<li> <a href="/::url_html_tag::">::label_html::</a> </li>
150 ::end::
151 <li> <a href="/_sitemap">Sitemap</a> </li>
152 </ul>
153 </div>
154
155 ::include(footer.html)::
156 </body>
157 </html>