preparing for a new logging framework
[mir.git] / templates-dist / admin / userlist.template
index e5d473d..69996b2 100755 (executable)
@@ -1,46 +1,47 @@
 <html>
 <head>
-       <title>${lang("userlist.htmltitle")}</title>
+       <title>${config["Mir.Name"]} | ${lang("userlist.htmltitle")}</title>
+        <link rel="stylesheet" type="text/css" href="${config.docRoot}/style/admin.css">
 </head>
 
-<body bgcolor="#FFFFFF">
-<include "head.template">
+<body marginwidth="0" marginheight="0" topmargin="0" leftmargin="0">
+
+<include "admin/head.template">
 <if contentlist>
 <table border="0" cellpadding="2" cellspacing="1">
-  <tr bgcolor="#006600">
-    <td><font color="#FFFFFF" face="Verdana, Arial, Helvetica, sans-serif" size="-1"><b>${lang("user.login")}</b></font></td>
-    <td><font color="#FFFFFF" face="Verdana, Arial, Helvetica, sans-serif" size="-1"><b>${lang("user.admin")}</b></font></td>
+  <tr class="darkgrey">
+    <td><span class="witesmall"><b>${lang("user.login")}</b></span></td>
+    <td><span class="witesmall"><b>${lang("user.admin")}</b></span></td>
   </tr>
 
   <list contentlist as entry>
   <tr
-       <if grey=="1"><assign grey="0">bgcolor="#dddddd" <else><assign grey="1"> </if>
-  >
+       <if grey=="1"><assign grey="0">class="list1"<else>class="list2"<assign grey="1"> </if>>
   <td>${entry.login}&nbsp;</td>
   <td>${entry.is_admin}&nbsp;</td>
-  <td><font size="1">&nbsp;<a href="${config.actionRoot}?module=Users&do=delete&id=${entry.id}">${lang("delete")}</a>
-    | <a href="${config.actionRoot}?module=Users&do=edit&id=${entry.id}">${lang("edit")}</a></font></td>
+  <td><span class="text">&nbsp;<a href="${config.actionRoot}?module=Users&do=delete&id=${entry.id}">${lang("delete")}</a>
+    | <a href="${config.actionRoot}?module=Users&do=edit&id=${entry.id}">${lang("edit")}</a></span></td>
   </tr>
   </list>
   <tr>
-    <td colspan="3" bgcolor="#006600"><font color="#ffffff">${data.count} ${lang("records")}
-      /  ${lang("show_from_to", data.from, data.to)}</font></td>
+    <td colspan="3" class="darkgrey"><span class="witetext">${data.count} ${lang("records")}
+      /  ${lang("show_from_to", data.from, data.to)}</span></td>
     <td>&nbsp;</td>
   </tr>
 </table>
 
       <P>
-<if prev>
+<if data.prev>
        <a href="${actionRoot}?module=Users&do=list&where=${where}&prevoffset=${prev}&prev=zur&uuml;ck">${lang("list.previous")}</a>&nbsp;
 </if>
-<if next>
+<if data.next>
 <a href="${actionRoot}?module=Users&do=list&where=${where}&nextoffset=${next}&next=weiter">${lang("list.next")}</a>
 </if>
 
 <else>
   <P align="center">${lang("no_matches_found")}</p>
 </if>
-<include "foot.template">
+<include "admin/foot.template">
 </body>
 </html>