it should be Message modules and not the Users module
[mir.git] / templates / admin / messagelist.template
1 <html>
2 <head>
3         <title>${config["Mir.Name"]} | ${lang("messagelist.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 "templates/admin/head.template">
10 <if data.contentlist>
11 <table border="0" cellpadding="2" cellspacing="1">
12   <tr class="darkgrey">
13     <td><span class="witesmall">
14                 <b>${lang("message.date")}</b></span></td>
15     <td><span class="witesmall">
16                 <b>${lang("message.title")}<br>${lang("message.creator")}</b></span></td>
17     <td><span class="witesmall">
18                 <b>${lang("message.text")}</b></span></td>
19   </tr>
20
21   <list data.contentlist as entry>
22   <tr
23        <if grey=="1"><assign grey="0">class="list1"<else>class="list2"<assign grey="1"> </if>>
24   <td>${entry.webdb_create}&nbsp;</td>
25   <td><b>${entry.title}</b><br>
26       <i>${entry.creator}</i></td>
27   <td class="pink">${entry.description}&nbsp;</td>
28   <td><span class="text">&nbsp;<a href="${config.actionRoot}?module=Message&do=delete&id=${entry.id}">${lang("delete")}</a>
29     | <a href="${config.actionRoot}?module=Message&do=edit&id=${entry.id}">${lang("edit")}</a></span></td>
30   </tr>
31   </list>
32   <tr>
33     <td colspan="3" class="darkgrey"><span class="witetext">${data.count} ${lang("records")} /
34         ${lang("show_from_to", data.from, data.to)}</span></td>
35     <td>&nbsp;</td>
36   </tr>
37 </table>
38
39       <P>
40 <if data.prev>
41         <a href="${config.actionRoot}?module=Message&do=list&where=${data.where}&prevoffset=${data.prev}&prev=zur&uuml;ck">${lang("list.previous")}</a>&nbsp;
42 </if>
43 <if data.next>
44 <a href="${config.actionRoot}?module=Message&do=list&where=${data.where}&nextoffset=${data.next}&next=weiter">${lang("list.next")}</a>
45 </if>
46
47 <else>
48   <P align="center">${lang("no_matches_found")}</p>
49 </if>
50 <include "templates/admin/foot.template">
51 </body>
52 </html>