added the possibility to search for articles by topic
[mir.git] / templates / admin / topiclist.template
1 <html>
2   <head>
3     <title>${config["Mir.Name"]} | ${lang("topiclist.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("1", module, "Admin", "superusermenu")>
13
14     <if entities>
15       <call showPrevNextLinks(prevurl, nexturl, "left")>
16       <call EntityTable(entities, [
17            "title", 
18            "filename", 
19            "main_url", 
20            "archiv_url",
21            "description"], 
22            [ lang("topic.title"), 
23              lang("topic.filename"), 
24              lang("topic.main_url"), 
25              lang("topic.archive_url"), 
26              lang("topic.description")], 
27           from, to, count, "1", "1", module)>
28       <call showPrevNextLinks(prevurl, nexturl, "left")>
29       <call showAddOrBack("1", module, "Admin", "superusermenu")>
30     <else>
31       <P align="center">${lang("no_matches_found")}</p>
32     </if>
33
34     <include "foot.template">
35   </body>
36 </html>
37
38