31 lines
811 B
Plaintext
31 lines
811 B
Plaintext
{{!
|
|
modpage.mustache -- the moderator panel when logged in
|
|
template parameters:
|
|
- prefix ( the site's prefix )
|
|
|
|
}}
|
|
<html>
|
|
<head>
|
|
<link rel="stylesheet" href="{{prefix}}static/site.css"></link>
|
|
<!-- yes it uses js -->
|
|
<script type="text/javascript" src="{{prefix}}static/mod.js"></script>
|
|
<title> nntpchan mod page </title>
|
|
</head>
|
|
<body>
|
|
<div>
|
|
<div> post actions </div>
|
|
<hr />
|
|
<div>
|
|
<label for="nntpchan_mod_target">url</label>
|
|
<input id="nntpchan_mod_target" type="text" />
|
|
</div>
|
|
<button onclick="nntpchan_ban()">ban</button>
|
|
<button onclick="nntpchan_delete()">delete</button>
|
|
</div>
|
|
<div id="nntpchan_mod_result"></div>
|
|
<noscript>
|
|
<b>enable js to use the mod panel kthx</b>
|
|
</noscript>
|
|
</body>
|
|
</html>
|