fixed p-Tag that was left open
[mir.git] / templates / admin / articletypelist.template
1 <html>
2   <head>
3     <title>${config["Mir.Name"]} | ${lang("articletypelist.htmltitle")}</title>
4     <link rel="stylesheet" type="text/css" href="${config.docRoot}/style/admin.css">
5   </head>
6   <body marginwidth="0" marginheight="0" topmargin="0" leftmargin="0">
7     
8     <include "FUNCTIONS.template">
9     <include "head.template">
10
11     <assign contentlist = data.contentlist>
12     <assign column_nr = 3>
13     <assign data_keys = ["id","name"]>
14     <assign column_head_texts = [lang("articletype.id"), lang("articletype.name")]>
15     <assign column_head_CSS = "table_head">
16     <assign listrow1CSS = "listrow1">
17     <assign listrow2CSS = "listrow2">
18     <assign footer_css = "table_foot">
19     <assign module_name = "ArticleType">
20     <assign module_jumpback = "Admin">
21     <assign do_jumpback = "superusermenu">
22   
23     <include "templates/admin/head.template">
24   
25     <call AddOrBack(module_name, module_jumpback, do_jumpback)>
26
27     <if data.contentlist>
28       <call ListTable(contentlist, data_keys, column_head_texts, column_head_CSS, listrow1CSS, listrow2CSS, footer_css, module_name)>
29       <call AddOrBack(module_name, module_jumpback, do_jumpback)>
30     <else>
31       <P align="center">${lang("no_matches_found")}</p>
32     </if>
33
34     <include "foot.template">
35   </body>
36 </html>
37
38