small fixes + processing time now shown in job queue
[mir.git] / templates / admin / abuse.template
1 <html>
2 <head>
3   <title>${config["Mir.Name"]} | ${lang("abuse.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 <p>
12   <a class="link-box"  href="${config.actionRoot}?module=Admin&do=superusermenu">[ &lt; ] ${lang("back")}</a>
13 </p>
14
15 <table cellspacing="15">
16 <tr>
17 <td valign="top">
18
19 <form method="post" action="${config.actionRoot}">
20   <input type="hidden" name="module" value="Abuse">
21   <input type="hidden" name="do" value="savesettings">
22
23   <table border="0" cellpadding="2" cellspacing="3">
24     <tr>
25       <td class="table-head"><b>${lang("abuse.setting")}</b></td>
26       <td class="table-head"><b>${lang("abuse.value")}</b></td>
27     </tr>
28
29     <call CheckboxTableRow (lang("abuse.disableopenpostings"), "disableop", disableop)>
30     <call CheckboxTableRow (lang("abuse.openpostingpassword"), "passwordop", passwordop)>
31     
32     <tr class="x-small"><td colspan="2">&nbsp;</td></tr>
33
34     <call CheckboxTableRow (lang("abuse.logpostings"), "logenabled", logenabled)>
35     <call TextInputTableRow (lang("abuse.logsize"), 10, 10, "logsize", logsize)>
36     
37     <tr class="x-small"><td colspan="2">&nbsp;</td></tr>    
38     
39     <call CheckboxTableRow (lang("abuse.cookies"), "usecookies", usecookies)>
40     
41     <tr class="x-small"><td colspan="2">&nbsp;</td></tr>    
42
43     <call PulldownTableRow (lang("abuse.articleaction"), "articleaction", articleactions, "identifier", "resource", articleaction, "content.operation.")>
44     <call PulldownTableRow (lang("abuse.commentaction"), "commentaction", commentactions, "identifier", "resource", commentaction, "comment.operation.")>
45
46     <tr>
47       <td colspan="2" class="table-foot">
48         <input class="majorbutton" type="submit" name="submit" value="${lang("save")}">
49       </td>
50     </tr>
51   </table>
52 </form>
53
54 </td>
55 <td valign="top">
56
57 <p class="box">
58   &gt; <a href="${config.actionRoot}?module=Abuse&do=showlog">${lang("abuse.showlog")}</a><br>
59   &gt; <a href="${config.actionRoot}?module=Abuse&do=showfilters">${lang("abuse.showfilters")}</a>
60 </p>
61
62 </td>
63 </tr>
64 </table>
65
66
67
68 <p>
69   <a class="link-box"  href="${config.actionRoot}?module=Admin&do=superusermenu">[ &lt; ] ${lang("back")}</a>
70 </p>
71
72   <include "foot.template">
73 </body>
74 </html>
75
76