summaryrefslogtreecommitdiff
path: root/templates/commentmoderation.tmpl
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2020-11-27 11:29:41 +0200
committerLars Wirzenius <liw@liw.fi>2020-11-27 12:27:35 +0200
commit92d8aadbadb5767f41342cd2958b8662ef0b8d96 (patch)
tree430ef6d12674a27eca37dbd80f8053f12c5c37d4 /templates/commentmoderation.tmpl
parent193673fa4ca986a8503dded44019f3b0eac30084 (diff)
downloadobnam.org-92d8aadbadb5767f41342cd2958b8662ef0b8d96.tar.gz
page.tmpl: simplify lots
Drop unnecessary parts. Alwys choose html5.
Diffstat (limited to 'templates/commentmoderation.tmpl')
-rw-r--r--templates/commentmoderation.tmpl32
1 files changed, 0 insertions, 32 deletions
diff --git a/templates/commentmoderation.tmpl b/templates/commentmoderation.tmpl
deleted file mode 100644
index dfa63c2..0000000
--- a/templates/commentmoderation.tmpl
+++ /dev/null
@@ -1,32 +0,0 @@
-<TMPL_IF COMMENTS>
-<br />
-<form action="<TMPL_VAR CGIURL>" method="post">
-<input type="hidden" name="do" value="commentmoderation" />
-<input type="hidden" name="sid" value="<TMPL_VAR SID>" />
-<input type="submit" value="Submit" />
-<input id="rejectalldefer" type="checkbox" name="rejectalldefer" value="1" />
-<label for="rejectalldefer">Reject all comments marked <em>Defer</em></label>
-<br />
-<TMPL_LOOP COMMENTS>
-<div>
-<div>
-<TMPL_VAR VIEW>
-</div>
-<input id="defer_<TMPL_VAR ID>" type="radio" value="Defer" name="<TMPL_VAR ID>" checked="checked" />
-<label for="defer_<TMPL_VAR ID>">Defer</label>
-<input id="dccept_<TMPL_VAR ID>" type="radio" value="Accept" name="<TMPL_VAR ID>" />
-<label for="dccept_<TMPL_VAR ID>">Accept</label>
-<input id="reject_<TMPL_VAR ID>" type="radio" value="Reject" name="<TMPL_VAR ID>" />
-<label for="reject_<TMPL_VAR ID>">Reject</label>
-</div>
-<br />
-</TMPL_LOOP>
-<input type="submit" value="Submit" />
-<input id="rejectalldefer2" type="checkbox" name="rejectalldefer" value="1" />
-<label for="rejectalldefer2">Reject all comments marked <em>Defer</em></label>
-</form>
-<TMPL_ELSE>
-<p>
-No comments need moderation at this time.
-</p>
-</TMPL_IF>