mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-31 05:50:42 +02:00
Parial forum admin, add/edit forum is working
git-svn-id: file:///svn/phpbb/trunk@886 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
52
phpBB/templates/PSO/admin/forum_edit_body.tpl
Normal file
52
phpBB/templates/PSO/admin/forum_edit_body.tpl
Normal file
@@ -0,0 +1,52 @@
|
||||
<br clear="all" />
|
||||
|
||||
<h1>Edit Forum</h1>
|
||||
|
||||
<p>The form below will allow you to customize all the general board options. For User and Forum configurations use the related links on the left hand side.</p>
|
||||
|
||||
<form action="{S_FORUM_ACTION}" method="POST">
|
||||
|
||||
<table width="99%" cellpadding="1" cellspacing="0" border="0" align="center">
|
||||
<tr>
|
||||
<td class="tablebg" width="100%"><table width="100%" cellpadding="4" cellspacing="1" border="0">
|
||||
<tr>
|
||||
<td class="cat" colspan="2"><span class="cattitle">General Forum Settings</span></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1">Forum Name:</td>
|
||||
<td class="row2"><input type="text" size="25" name="forumname" value="{FORUMNAME}"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1">Description:</td>
|
||||
<td class="row2"><textarea ROWS="15" COLS="45" WRAP="VIRTUAL" name="forumdesc">{DESCRIPTION}</TEXTAREA></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1">Category:</td>
|
||||
<td class="row2">
|
||||
<select name="cat_id">
|
||||
{S_CATLIST}
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1">Forum Status:</td>
|
||||
<td class="row2">
|
||||
<select name="forumstatus">
|
||||
{S_STATUSLIST}
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row2" colspan="2" align="center">
|
||||
<input type="hidden" name="mode" value="{S_NEWMODE}">
|
||||
<input type="hidden" name="forum_id" value="{S_FORUMID}">
|
||||
<input type="submit" name="submit" value="{BUTTONVALUE}">
|
||||
</td>
|
||||
</tr>
|
||||
</table></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</form>
|
||||
|
||||
<br clear="all">
|
@@ -1,32 +1,26 @@
|
||||
<p>Use this page to manage your forums and categories</p>
|
||||
|
||||
|
||||
{S_FORMSTART}
|
||||
<div align="center"><table width="98%" cellpadding="1" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="tablebg"><table width="100%" cellpadding="3" cellspacing="1" border="0">
|
||||
<tr>
|
||||
<th> </td>
|
||||
<th> {L_FORUM} </td>
|
||||
<th> {L_TOPICS} </td>
|
||||
<th> {L_POSTS} </td>
|
||||
<th> {L_LASTPOST} </td>
|
||||
<th> {L_MODERATOR} </td>
|
||||
</tr>
|
||||
<!-- BEGIN catrow -->
|
||||
<tr>
|
||||
<td class="cat" colspan="6"><span class="cattitle"><b><a href="{catrow.U_VIEWCAT}">{catrow.CAT_DESC}</a></b> </span>{catrow.S_NEWCAT}</td>
|
||||
</tr>
|
||||
<td class="cat" colspan="6"><span class="cattitle"><b><a href="{catrow.U_VIEWCAT}">{catrow.CAT_DESC}</a></b></span>{catrow.S_ADDCAT}</span></td>
|
||||
</tr>{catrow.S_ADDCAT_ENDFORM}
|
||||
<!-- BEGIN forumrow -->
|
||||
<tr>
|
||||
<td class="row1" align="center" valign="middle" width="7%">{catrow.forumrow.FOLDER}</td>
|
||||
<td class="row2"><span class="gen">{catrow.forumrow.S_NEWFORUM}<a href="{catrow.forumrow.U_VIEWFORUM}">{catrow.forumrow.FORUM_NAME}</a></span><br><span class="gensmall">{catrow.forumrow.FORUM_DESC}</span></td>
|
||||
<td class="row1" width="5%" align="center" valign="middle"><span class="gen">{catrow.forumrow.TOPICS}</span></td>
|
||||
<td class="row2" width="5%" align="center" valign="middle"><span class="gen">{catrow.forumrow.POSTS}</span></td>
|
||||
<td class="row1" width="15%" align="center" valign="middle"><span class="gensmall">{catrow.forumrow.LAST_POST}</span></td>
|
||||
<td class="row2" width="5%" align="center" valign="middle"><span class="gensmall">{catrow.forumrow.MODERATORS}</span></td></tr>
|
||||
<td class="row1" align="center" valign="middle">{catrow.forumrow.FOLDER}</td>
|
||||
<td class="row2"><span class="gen">{catrow.forumrow.S_ADDFORUM}{catrow.forumrow.S_NEWFORUM}<a href="{catrow.forumrow.U_VIEWFORUM}" target="_new">{catrow.forumrow.FORUM_NAME}</a></span><br><span class="gensmall">{catrow.forumrow.FORUM_DESC}</span></td>
|
||||
{catrow.forumrow.S_ADDFORUM_ENDFORM}
|
||||
<td class="row1" align="center" valign="middle"><span class="gen">{catrow.forumrow.FORUM_EDIT}</span></td>
|
||||
<td class="row2" align="center" valign="middle"><span class="gen">{catrow.forumrow.FORUM_UP} {catrow.forumrow.FORUM_DOWN}</span></td>
|
||||
<td class="row1" align="center" valign="middle"><span class="gensmall">{catrow.forumrow.LAST_POST}</span></td>
|
||||
<td class="row2" align="center" valign="middle"><span class="gensmall">{catrow.forumrow.MODERATORS}</span></td></tr>
|
||||
</tr>
|
||||
<!-- END forumrow -->
|
||||
<!-- END catrow -->
|
||||
</table></td>
|
||||
</tr>
|
||||
</table></div>
|
||||
|
||||
{S_FORMEND}
|
||||
|
Reference in New Issue
Block a user