summary refs log tree commit diff stats
path: root/theme/admin/moderateComments.tpl
diff options
context:
space:
mode:
authorStarla Insigna <hatkirby@fourisland.com>2008-11-19 17:27:03 -0500
committerStarla Insigna <hatkirby@fourisland.com>2008-11-19 17:27:03 -0500
commit24503e3abe705acde2df159aeae61be0d009f92e (patch)
tree8debbd53dcd0db2f5934c5e2af4e697e3787781d /theme/admin/moderateComments.tpl
downloadfourisland-24503e3abe705acde2df159aeae61be0d009f92e.tar.gz
fourisland-24503e3abe705acde2df159aeae61be0d009f92e.tar.bz2
fourisland-24503e3abe705acde2df159aeae61be0d009f92e.zip
Imported sources
Diffstat (limited to 'theme/admin/moderateComments.tpl')
-rw-r--r--theme/admin/moderateComments.tpl24
1 files changed, 24 insertions, 0 deletions
diff --git a/theme/admin/moderateComments.tpl b/theme/admin/moderateComments.tpl new file mode 100644 index 0000000..f3da51c --- /dev/null +++ b/theme/admin/moderateComments.tpl
@@ -0,0 +1,24 @@
1<H2>Moderate Comments</H2>
2
3<TABLE WIDTH="100%" CLASS="webmail">
4 <TR>
5 <TH>Title of Article Commented Upon</TH>
6 <TH>Comment Author</TH>
7 <TH>Actions</TH>
8 </TR>
9
10 <!--BEGIN COMMENT-->
11 <TR>
12 <TD><!--COMMENT.TITLE--></TD>
13 <TD><!--COMMENT.AUTHOR--></TD>
14
15 <TD>
16 <A HREF="/admin/viewComment.php?id=<!--COMMENT.ID-->"><IMG SRC="/theme/images/icons/page_go.png" ALT="View"></A>
17 <A HREF="/admin/actionComment.php?id=<!--COMMENT.ID-->&approve"><IMG SRC="/theme/images/icons/page_attach.png" ALT="Approve"></A>
18 <A HREF="/admin/actionComment.php?id=<!--COMMENT.ID-->&deny"><IMG SRC="/theme/images/icons/page_delete.png" ALT="Deny"></A>
19 </TD>
20 </TR>
21 <!--END COMMENT-->
22</TABLE>
23
24<A HREF="/admin/">Back to Admin Panel</A>