summary refs log tree commit diff stats
path: root/theme/admin/managePosts.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/managePosts.tpl
downloadfourisland-24503e3abe705acde2df159aeae61be0d009f92e.tar.gz
fourisland-24503e3abe705acde2df159aeae61be0d009f92e.tar.bz2
fourisland-24503e3abe705acde2df159aeae61be0d009f92e.zip
Imported sources
Diffstat (limited to 'theme/admin/managePosts.tpl')
-rw-r--r--theme/admin/managePosts.tpl24
1 files changed, 24 insertions, 0 deletions
diff --git a/theme/admin/managePosts.tpl b/theme/admin/managePosts.tpl new file mode 100644 index 0000000..7e37b1f --- /dev/null +++ b/theme/admin/managePosts.tpl
@@ -0,0 +1,24 @@
1<H2>Manage Posts</H2>
2
3<TABLE WIDTH="100%" CLASS="webmail">
4 <TR>
5 <TH>Post Title</TH>
6 <TH>Post Author</TH>
7 <TH>Actions</TH>
8 </TR>
9
10 <!--BEGIN POST-->
11 <TR>
12 <TD><!--POST.TITLE--></TD>
13 <TD><!--POST.AUTHOR--></TD>
14
15 <TD>
16 <A HREF="/admin/editPost.php?id=<!--POST.ID-->"><IMG SRC="/theme/images/icons/page_edit.png" ALT="Edit"></A>
17 <A HREF="/admin/deletePost.php?id=<!--POST.ID-->"><IMG SRC="/theme/images/icons/page_delete.png" ALT="Delete"></A>
18 <A HREF="/blog/<!--POST.CODED-->/"><IMG SRC="/theme/images/icons/page_go.png" ALT="View"></A>
19 </TD>
20 </TR>
21 <!--END POST-->
22</TABLE>
23
24<A HREF="/admin/">Back to Admin Panel</A>