- topiclist now optionally with checkboxes on article edit form
[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     <p>
10       <a class="majorcommand" href="${config.actionRoot}?module=Abuse">${lang("back")}</a>
11     </p>
12
13     <table border="0" cellpadding="2" cellspacing="1">
14       <tr class="darkgrey">
15         <td><span class="witesmall"><b>${lang("abuse.log.time")}</b></span></td>
16         <td><span class="witesmall"><b>${lang("abuse.log.address")}</b></span></td>
17         <td><span class="witesmall"><b>${lang("abuse.log.object")}</b></span></td>
18         <td><span class="witesmall"><b>${lang("abuse.log.browser")}</b></span></td>
19       </tr>
20       
21       <assign grey="0">      
22       <list log as l>
23         <if grey=="1"><assign grey="0"><tr class="list1"><else><tr class="list2"><assign grey="1"> </if>
24           <td>${l.timestamp["yyyy-MM-dd  HH:mm"]}</td>
25           <td>${l.ip}</td>
26           <td>
27             <if l.type=="content">
28               <a href="${config.actionRoot}?module=Content&do=edit&id=${l.id}&returnurl=${utility.encodeURI(thisurl)}">Article</a>
29             <else>
30               <a href="${config.actionRoot}?module=Comment&do=edit&id=${l.id}&returnurl=${utility.encodeURI(thisurl)}">Comment</a>
31             </if>
32           </td>
33           <td>${l.browser}</td>
34         </tr>
35       </list>
36     </table>
37
38     <p>
39       <a class="majorcommand" href="${config.actionRoot}?module=Abuse">${lang("back")}</a>
40     </p>
41
42     <include "foot.template">
43   </body>
44 </html>
45
46