Bundletool dev
[mir.git] / templates / admin / abuse.template
1 <html>
2   <head>
3     <title>${config["Mir.Name"]} | ${lang("userlist.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=Admin&do=superusermenu">${lang("back")}</a>
11     </p>
12     <p>
13       <a class="majorcommand" href="${config.actionRoot}?module=Abuse&do=showlog">${lang("abuse.showlog")}</a>
14     </p>
15     <p>
16       <a class="majorcommand" href="${config.actionRoot}?module=Abuse&do=showfilters">${lang("abuse.showfilters")}</a>
17     </p>
18     <p>
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="1">
24           <tr class="darkgrey">
25             <td><span class="witesmall"><b>${lang("abuse.setting")}</b></span></td>
26             <td><span class="witesmall"><b>${lang("abuse.value")}</b></span></td>
27           </tr>
28           <tr class="list1">
29             <td>
30               ${lang("abuse.disableopenpostings")}
31             </td>
32             <td>
33               <input type="checkbox" name="disableop" value="1" <if disableop=="1">checked="1"</if>>
34             </td>
35           </tr>
36           <tr class="list1">
37             <td>
38               ${lang("abuse.openpostingpassword")}
39             </td>
40             <td>
41               <input type="checkbox" name="passwordop" value="1" <if passwordop=="1">checked="1"</if>>
42             </td>
43           </tr>
44           <tr class="list2">
45             <td>
46               ${lang("abuse.logpostings")}
47             </td>
48             <td>
49               <input type="checkbox" name="logenabled" value="1" <if logenabled=="1">checked="1"</if>>
50             </td>
51           </tr>
52           <tr class="list2">
53             <td>
54               ${lang("abuse.logsize")}'
55             </td>
56             <td>
57               <input type="text" size="10" name="logsize" value="${logsize}">
58             </td>
59           </tr>
60           <tr class="list1">
61             <td>
62               ${lang("abuse.cookies")}
63             </td>
64             <td>
65               <input type="checkbox" name="usecookies" value="1" <if usecookies=="1">checked="1"</if>>
66             </td>
67           </tr>
68           <tr class="list1">
69             <td>
70               ${lang("abuse.articleaction")}
71             </td>
72             <td>
73               <select name="articleaction">
74                 <list articleactions as a>
75                   <option value="${a.identifier}" <if articleaction==a.identifier>selected="1"</if>>${utility.encodeHTML(lang(a.resource))}</option>
76                 </list>
77               </select>
78             </td>
79           </tr>
80           <tr class="list1">
81             <td>
82               ${lang("abuse.commentaction")}
83             </td>
84             <td>
85               <select name="commentaction">
86                 <list commentactions as a>
87                   <option value="${a.identifier}" <if commentaction==a.identifier>selected="1"</if>>${utility.encodeHTML(lang(a.resource))}</option>
88                 </list>
89               </select>
90             </td>
91           </tr>
92         </table>
93         <p>
94           <input class="majorbutton" type="submit" name="submit" value="${lang("save")}">
95       </form>
96
97       <a class="majorcommand" href="${config.actionRoot}?module=Abuse&do=showfilters">${lang("abuse.showfilters")}</a>
98     </p>
99
100     <p>
101       <a class="majorcommand" href="${config.actionRoot}?module=Admin&do=superusermenu">${lang("back")}</a>
102     </p>
103
104     <include "foot.template">
105   </body>
106 </html>
107
108