merged with 1.1
[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     <if config["Abuse.DisallowIPLogging"]!="1">
35       <call CheckboxTableRow (lang("abuse.logpostings"), "logenabled", logenabled)>
36       <call TextInputTableRow (lang("abuse.logsize"), 10, 10, "logsize", logsize)>
37     </if>
38     
39     <tr class="x-small"><td colspan="2">&nbsp;</td></tr>    
40     
41     <call CheckboxTableRow (lang("abuse.cookies"), "usecookies", usecookies)>
42     
43     <tr class="x-small"><td colspan="2">&nbsp;</td></tr>    
44
45     <call PulldownTableRow (lang("abuse.articleaction"), "articleaction", articleactions, "identifier", "resource", articleaction, "content.operation.")>
46     <call PulldownTableRow (lang("abuse.commentaction"), "commentaction", commentactions, "identifier", "resource", commentaction, "comment.operation.")>
47
48     <tr>
49       <td colspan="2" class="table-foot">
50         <input class="majorbutton" type="submit" name="submit" value="${lang("save")}">
51       </td>
52     </tr>
53   </table>
54 </form>
55
56 </td>
57 <td valign="top">
58
59 <p class="box">
60   <if config["Abuse.DisallowIPLogging"]!="1">
61     &gt; <a href="${config.actionRoot}?module=Abuse&do=showlog">${lang("abuse.showlog")}</a><br>
62   </if>  
63   &gt; <a href="${config.actionRoot}?module=Abuse&do=showfilters">${lang("abuse.showfilters")}</a>
64 </p>
65
66 </td>
67 </tr>
68 </table>
69
70
71
72 <p>
73   <a class="link-box"  href="${config.actionRoot}?module=Admin&do=superusermenu">[ &lt; ] ${lang("back")}</a>
74 </p>
75
76   <include "foot.template">
77 </body>
78 </html>
79
80