summary refs log tree commit diff stats
path: root/theme/admin/moderateComments.tpl
blob: 7b41016f3b0c610236cf19bc8579c8e67a2678c3 (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-->&amp;approve"><img src="/theme/images/icons/page_attach.png" alt="Approve" /></a>
			<a href="/admin/actionComment.php?id=<!--COMMENT.ID-->&amp;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>