merged with 1.1
[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 "FUNCTIONS.template">
10     <include "head.template">
11     
12     <call showAddOrBack(mayAddUsers, "Users", "Admin", "superusermenu")>
13
14     <if users>
15       <call showPrevNextLinks(prevurl, nexturl, "left")>
16       <call EntityTable(users, ["login","is_admin"], [lang("user.login"), lang("user.admin")], from, to, count, mayDeleteUsers, mayEditUsers, "Users")>
17       <call showPrevNextLinks(prevurl, nexturl, "left")>
18       <call showAddOrBack(mayAddUsers, "Users", "Admin", "superusermenu")>
19     <else>
20       <P align="center">${lang("no_matches_found")}</p>
21     </if>
22
23     <include "foot.template">
24   </body>
25 </html>
26
27