summary refs log tree commit diff stats
path: root/theme/admin/managePending.tpl
diff options
context:
space:
mode:
authorStarla Insigna <hatkirby@fourisland.com>2009-08-13 17:46:09 -0400
committerStarla Insigna <hatkirby@fourisland.com>2009-08-13 17:46:09 -0400
commitb5736e3ad3830fa732dcbd1a518ec3dd6ea7b98a (patch)
tree0449277e94a42aa155995a90fd8a89cb3309e7ab /theme/admin/managePending.tpl
parent6a1d5b60e6ec541a36727b84b71168f62221f7d7 (diff)
downloadfourisland-b5736e3ad3830fa732dcbd1a518ec3dd6ea7b98a.tar.gz
fourisland-b5736e3ad3830fa732dcbd1a518ec3dd6ea7b98a.tar.bz2
fourisland-b5736e3ad3830fa732dcbd1a518ec3dd6ea7b98a.zip
Rewrote Admin panel
The following database changes must be made:

* A TEXT column called "text" must be added to the end of "polloftheweek"
* The transferPollRss.php script must be run
* The "pollrss" table must be dropped

Closes #113
Diffstat (limited to 'theme/admin/managePending.tpl')
-rwxr-xr-xtheme/admin/managePending.tpl26
1 files changed, 0 insertions, 26 deletions
diff --git a/theme/admin/managePending.tpl b/theme/admin/managePending.tpl deleted file mode 100755 index 6c98bf8..0000000 --- a/theme/admin/managePending.tpl +++ /dev/null
@@ -1,26 +0,0 @@
1<h2>Manage Pending</h2>
2
3<table width="100%" class="webmail">
4 <tr>
5 <th>Pending Post Title</th>
6 <th>Pending Post Author</th>
7 <th>Actions</th>
8 </tr>
9
10 <!--BEGIN PENDING-->
11 <tr>
12 <td><!--PENDING.TITLE--></td>
13 <td><!--PENDING.AUTHOR--></td>
14
15 <td>
16 <a href="/admin/editPending.php?id=<!--PENDING.ID-->"><img src="/theme/images/icons/page_edit.png" alt="Edit" /></a>
17 <a href="/admin/deletePending.php?id=<!--PENDING.ID-->"><img src="/theme/images/icons/page_delete.png" alt="Delete" /></a>
18 <a href="/admin/viewPending.php?id=<!--PENDING.ID-->"><img src="/theme/images/icons/page_go.png" alt="View" /></a>
19 <a href="/admin/movePending.php?id=<!--PENDING.ID-->&amp;dir=up"><img src="/theme/images/icons/thumb_up.png" alt="Move Up" /></a>
20 <a href="/admin/movePending.php?id=<!--PENDING.ID-->&amp;dir=down"><img src="/theme/images/icons/thumb_down.png" alt="Move Down" /></a>
21 </td>
22 </tr>
23 <!--END PENDING-->
24</table>
25
26<a href="/admin/">Back to Admin Panel</a>