summaryrefslogtreecommitdiff
path: root/commentmoderation.tmpl
diff options
context:
space:
mode:
authorJonas Smedegaard <dr@jones.dk>2010-07-20 23:09:23 +0200
committerJonas Smedegaard <dr@jones.dk>2010-07-20 23:18:03 +0200
commitf56c8b570fe10018c5842c27f30fcade6b5a87af (patch)
treeb8d2be3cd474296071c958884099f4378b096db2 /commentmoderation.tmpl
parent3011422a7d372db57061a803e4d14029fef477d8 (diff)
parentee62a82c4be0125da6b4758e43e231a3c28c857f (diff)
Merge branch 'master-da' into wian-da
Conflicts (manually resolved): misc.tmpl page.tmpl
Diffstat (limited to 'commentmoderation.tmpl')
-rw-r--r--commentmoderation.tmpl32
1 files changed, 32 insertions, 0 deletions
diff --git a/commentmoderation.tmpl b/commentmoderation.tmpl
new file mode 100644
index 0000000..b71db3a
--- /dev/null
+++ b/commentmoderation.tmpl
@@ -0,0 +1,32 @@
+<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">Afvis alle kommentarer markeret <em>Udsæt</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>">Udsæt</label>
+<input id="dccept_<TMPL_VAR ID>" type="radio" value="Accept" name="<TMPL_VAR ID>" />
+<label for="dccept_<TMPL_VAR ID>">Acceptér</label>
+<input id="reject_<TMPL_VAR ID>" type="radio" value="Reject" name="<TMPL_VAR ID>" />
+<label for="reject_<TMPL_VAR ID>">Afvis</label>
+</div>
+<br />
+</TMPL_LOOP>
+<input type="submit" value="Submit" />
+<input id="rejectalldefer2" type="checkbox" name="rejectalldefer" value="1" />
+<label for="rejectalldefer2">Afvis alle kommentarer markeret <em>Udsæt</em></label>
+</form>
+<TMPL_ELSE>
+<p>
+Ingen kommentarer kræver tilbageholdelse i øjeblikket.
+</p>
+</TMPL_IF>