diff options
| author | James Atkinson <thefinn@users.sourceforge.net> | 2001-08-02 08:37:15 +0000 |
|---|---|---|
| committer | James Atkinson <thefinn@users.sourceforge.net> | 2001-08-02 08:37:15 +0000 |
| commit | b70bb3c77cc85209178c8544c6ad5b552ecc1a31 (patch) | |
| tree | 1f818e194d979d7f84176844f5774be0c82ef857 /phpBB | |
| parent | 981b7056bb2212bbe228581e77372a08d2baa33f (diff) | |
| download | forums-b70bb3c77cc85209178c8544c6ad5b552ecc1a31.tar forums-b70bb3c77cc85209178c8544c6ad5b552ecc1a31.tar.gz forums-b70bb3c77cc85209178c8544c6ad5b552ecc1a31.tar.bz2 forums-b70bb3c77cc85209178c8544c6ad5b552ecc1a31.tar.xz forums-b70bb3c77cc85209178c8544c6ad5b552ecc1a31.zip | |
Template for forum management
git-svn-id: file:///svn/phpbb/trunk@793 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB')
| -rwxr-xr-x | phpBB/templates/PSO/admin/admin_forum_manage.tpl | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/phpBB/templates/PSO/admin/admin_forum_manage.tpl b/phpBB/templates/PSO/admin/admin_forum_manage.tpl new file mode 100755 index 0000000000..cca34dde57 --- /dev/null +++ b/phpBB/templates/PSO/admin/admin_forum_manage.tpl @@ -0,0 +1,40 @@ +<h1>Manage Forums</h1> +<p> + With the form below you can get a quick overview of your forums, change their ordering, modify their settings, lock forums, and delete unwanted forums. + To modify forum permissions use the <u>Permissions</u> link on the left hand side. +</p> +<br /> + +<table width="98%" cellpadding="1" cellspacing="0" border="0" align="center"> + <tr> + <td class="tablebg"><table width="100%" cellpadding="3" cellspacing="1" border="0"> + <tr> + <th> {L_FORUM} </th> + <th> {L_MODERATOR} </th> + <th> {L_ORDER} </th> + <th> {L_ACTION} </th> + </tr> + <!-- BEGIN catrow --> + <tr> + <td class="cat" colspan="6"><span class="cattitle"><b>{catrow.CAT_DESC}</b> </span></td> + </tr> + <!-- BEGIN forumrow --> + <form action="{S_MANAGE_ACTION}"><input type="hidden" name="mode" value="manage"> + <tr> + <td class="row1"><span class="gen"><a href="{catrow.forumrow.U_VIEWFORUM}">{catrow.forumrow.FORUM_NAME}</a></span><br /><span class="gensmall">{catrow.forumrow.FORUM_DESC}</span></td> + <td class="row2" width="5%" align="center" valign="middle"><span class="gensmall">{catrow.forumrow.MODERATORS}</span></td> + <td class="row2" width="5%" align="center" valign="middle"><input type="text" size="2" maxlength="4" value="{catrow.forumrow.FORUM_ORDER}" name="order"></td> + <td class="row2"> + <input type="hidden" name="{POST_FORUM_URL}" value="{catrow.forumrow.FORUM_ID}"> + <input type="submit" name="reorder" value="{L_UPDATE_ORDER}"> + <input type="submit" name="lock" value="{L_LOCK}"> + <input type="submit" name="edit" value="{L_EDIT}"> + <input type="submit" name="delete" value="{L_REMOVE}"> + </td> + </tr> + </form> + <!-- END forumrow --> + <!-- END catrow --> + </table></td> + </tr> +</table> |
