maintenance + localized operations introduced for comments
[mir.git] / templates / admin / userlist.template
1 <html>
2 <head>
3         <title>${config["Mir.Name"]} | ${lang("userlist.htmltitle")}</title>
4         <link rel="stylesheet" type="text/css" href="${config.docRoot}/style/admin.css">
5 </head>
6
7 <body marginwidth="0" marginheight="0" topmargin="0" leftmargin="0">
8
9 <include "templates/admin/head.template">
10 <if contentlist>
11 <table border="0" cellpadding="2" cellspacing="1">
12   <tr class="darkgrey">
13     <td><span class="witesmall"><b>${lang("user.login")}</b></span></td>
14     <td><span class="witesmall"><b>${lang("user.admin")}</b></span></td>
15   </tr>
16
17   <list contentlist as entry>
18   <tr
19        <if grey=="1"><assign grey="0">class="list1"<else>class="list2"<assign grey="1"> </if>>
20   <td>${entry.login}&nbsp;</td>
21   <td>${entry.is_admin}&nbsp;</td>
22   <td><span class="text">&nbsp;<a href="${config.actionRoot}?module=Users&do=delete&id=${entry.id}">${lang("delete")}</a>
23     | <a href="${config.actionRoot}?module=Users&do=edit&id=${entry.id}">${lang("edit")}</a></span></td>
24   </tr>
25   </list>
26   <tr>
27     <td colspan="3" class="darkgrey"><span class="witetext">${data.count} ${lang("records")}
28       /  ${lang("show_from_to", data.from, data.to)}</span></td>
29     <td>&nbsp;</td>
30   </tr>
31 </table>
32
33       <P>
34 <if data.prev>
35         <a href="${actionRoot}?module=Users&do=list&where=${where}&prevoffset=${prev}&prev=zur&uuml;ck">${lang("list.previous")}</a>&nbsp;
36 </if>
37 <if data.next>
38 <a href="${actionRoot}?module=Users&do=list&where=${where}&nextoffset=${next}&next=weiter">${lang("list.next")}</a>
39 </if>
40
41 <else>
42   <P align="center">${lang("no_matches_found")}</p>
43 </if>
44 <include "templates/admin/foot.template">
45 </body>
46 </html>
47
48