optionally show a list of logged in admin users
[mir.git] / templates / admin / mediafolderlist.template
1 <html>
2 <head>
3   <title>${config["Mir.Name"]} | ${lang("mediafolderlist.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     <include "FUNCTIONS.template">
9     <include "head.template">
10     
11     <call showAddOrBack("1", module, "Admin", "superusermenu")>
12
13     <if entities>
14       <call showPrevNextLinks(prevurl, nexturl, "left")>
15       <call EntityTable(entities, ["name", "place","comment"], 
16          [ lang("mediafolder.name"), 
17            lang("mediafolder.location"),
18            lang("mediafolder.comment")], from, to, count, "1", "1", module)>
19       <call showPrevNextLinks(prevurl, nexturl, "left")>
20       <call showAddOrBack("1", module, "Admin", "start")>
21     <else>
22       <P align="center">${lang("no_matches_found")}</p>
23     </if>
24
25     <include "foot.template">
26 </body>
27 </html>
28
29