summary refs log tree commit diff stats
path: root/theme/admin/moderateComments.tpl
blob: f3da51c3e7692966e29745d66763ee3f09015441 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<H2>Moderate Comments</H2>

<TABLE WIDTH="100%" CLASS="webmail">
	<TR>
		<TH>Title of Article Commented Upon</TH>
		<TH>Comment Author</TH>
		<TH>Actions</TH>
	</TR>

	<!--BEGIN COMMENT-->
	<TR>
		<TD><!--COMMENT.TITLE--></TD>
		<TD><!--COMMENT.AUTHOR--></TD>

		<TD>
			<A HREF="/admin/viewComment.php?id=<!--COMMENT.ID-->"><IMG SRC="/theme/images/icons/page_go.png" ALT="View"></A>
			<A HREF="/admin/actionComment.php?id=<!--COMMENT.ID-->&approve"><IMG SRC="/theme/images/icons/page_attach.png" ALT="Approve"></A>
			<A HREF="/admin/actionComment.php?id=<!--COMMENT.ID-->&deny"><IMG SRC="/theme/images/icons/page_delete.png" ALT="Deny"></A>
		</TD>
	</TR>
	<!--END COMMENT-->
</TABLE>

<A HREF="/admin/">Back to Admin Panel</A>