scripts/mir-setup/README: update with link to new doc on wiki
[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 "LISTFUNCTIONS.template">
10     <include "head.template">
11     
12     <call showAddOrBack("1", module, "Admin", "start")>
13
14     <if entities>
15       <call showPrevNextLinks(prevurl, nexturl, "left")>
16       <call ListStart()>\r
17       <call ListHead([
18              lang("mediafolder.name"), 
19              lang("mediafolder.location"),
20              lang("mediafolder.comment"), ])>
21   
22       <list entities as e>    
23           <call ExtendedListEntry([
24             utility.prettyEncodeHTML(e.name), 
25             utility.prettyEncodeHTML(e.place), 
26             utility.prettyEncodeHTML(e.comment)], 
27             ["module="+module+"&id="+e.id+"&do=edit", "module="+module+"&id="+e.id+"&do=delete", 
28               "module=Images&do=search&searchmediafolder="+e.id], 
29             [lang("edit"), lang("delete"), lang("list")])
30           >
31       </list>\r
32       <call ListFoot(count, from, to)>\r
33       <call ListEnd()>\r
34       <call showPrevNextLinks(prevurl, nexturl, "left")>
35       <call showAddOrBack("1", module, "Admin", "start")>
36     <else>
37       <P align="center">${lang("no_matches_found")}</p>
38     </if>
39
40     <include "foot.template">
41 </body>
42 </html>
43
44