]> sipb.mit.edu Git - ikiwiki.git/blob - templates/commentmoderation.tmpl
comments: Add a moderation web interface.
[ikiwiki.git] / templates / commentmoderation.tmpl
1 <TMPL_IF NAME="COMMENTS">
2 <br />
3 <form action="<TMPL_VAR CGIURL>" method="post">
4 <input type="hidden" name="do" value="commentmoderation" />
5 <input type="hidden" name="sid" value="<TMPL_VAR SID>" />
6 <TMPL_LOOP NAME="COMMENTS">
7 <div>
8 <div>
9 <TMPL_VAR VIEW>
10 </div>
11 <input type="radio" value="Defer" name="<TMPL_VAR ID>" checked>Defer</input>
12 <input type="radio" value="Accept" name="<TMPL_VAR ID>">Accept</input>
13 <input type="radio" value="Reject" name="<TMPL_VAR ID>">Reject</input>
14 </div>
15 <br />
16 </TMPL_LOOP>
17 <input type="submit" value="Submit" />
18 </form>
19 <TMPL_ELSE>
20 <p>
21 No comments need moderation at this time.
22 </p>
23 </TMPL_IF>