4eb8e2d685fd55deb687631ce3fd049bbef603c4
[mir.git] / templates / admin / abuse.log.template
1 <html>
2   <head>
3     <title>${config["Mir.Name"]} | ${lang("abuse.log.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 "head.template">
9     
10         <p>
11                 <a class="link-box" href="${config.actionRoot}?module=Abuse"> [ &lt; ] ${lang("back")}</a>&nbsp;&nbsp;
12                 <a class="link-box" href="${config.actionRoot}?module=Abuse&do=showfilters">${lang("abuse.showfilters")}</a>
13                 <br>
14         </p>
15     <table border="0" cellpadding="2" cellspacing="3">
16       <tr class="darkgrey">
17         <td class="table-head">${lang("abuse.log.time")}</td>
18         <td class="table-head">${lang("abuse.log.address")}</td>
19         <td class="table-head">${lang("abuse.log.object")}</td>
20         <td class="table-head">${lang("abuse.log.browser")}</td>
21       </tr>
22       
23       <assign grey="0">      
24       <list log as l>
25         <if grey=="1"><assign grey="0"><tr class="listrow1"><else><tr class="listrow2"><assign grey="1"> </if>
26           <td>${l.timestamp["yyyy-MM-dd  HH:mm"]}</td>
27           <td>${l.ip}</td>
28           <td>
29             <if l.type=="content">
30               <a href="${config.actionRoot}?module=Content&do=edit&id=${l.id}&returnurl=${utility.encodeURI(thisurl)}">Article</a>
31             <else>
32               <a href="${config.actionRoot}?module=Comment&do=edit&id=${l.id}&returnurl=${utility.encodeURI(thisurl)}">Comment</a>
33             </if>
34           </td>
35           <td>${l.browser}</td>
36         </tr>
37       </list>
38           <tr>
39                 <td colspan="4" class="table-foot">&nbsp;</td>
40           </tr>
41     </table>
42
43     <p>
44       <a class="link-box" href="${config.actionRoot}?module=Abuse"> [ &lt; ] ${lang("back")}</a>&nbsp;&nbsp;
45           <a class="link-box" href="${config.actionRoot}?module=Abuse&do=showfilters">${lang("abuse.showfilters")}</a>
46     </p>
47
48     <include "foot.template">
49   </body>
50 </html>
51
52