diff options
author | Ludovic Arnaud <ludovic_arnaud@users.sourceforge.net> | 2003-07-02 22:42:50 +0000 |
---|---|---|
committer | Ludovic Arnaud <ludovic_arnaud@users.sourceforge.net> | 2003-07-02 22:42:50 +0000 |
commit | 3842aac9b6ebbcef2cb7856c37afcbf533c6c6dd (patch) | |
tree | 20d2cf62ed5bb57361b353b9d2c9e9e5ae0368f0 /phpBB/templates/subSilver | |
parent | 79999c7bf398229fa140c21e46221dbea52c1eb7 (diff) | |
download | forums-3842aac9b6ebbcef2cb7856c37afcbf533c6c6dd.tar forums-3842aac9b6ebbcef2cb7856c37afcbf533c6c6dd.tar.gz forums-3842aac9b6ebbcef2cb7856c37afcbf533c6c6dd.tar.bz2 forums-3842aac9b6ebbcef2cb7856c37afcbf533c6c6dd.tar.xz forums-3842aac9b6ebbcef2cb7856c37afcbf533c6c6dd.zip |
Updated MCP. Started to implement reports review. Check out the new "post details" screen with reported posts
git-svn-id: file:///svn/phpbb/trunk@4195 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/templates/subSilver')
-rw-r--r-- | phpBB/templates/subSilver/mcp_post.html | 62 | ||||
-rw-r--r-- | phpBB/templates/subSilver/mcp_queue.html | 4 | ||||
-rw-r--r-- | phpBB/templates/subSilver/mcp_topic.html | 2 |
3 files changed, 61 insertions, 7 deletions
diff --git a/phpBB/templates/subSilver/mcp_post.html b/phpBB/templates/subSilver/mcp_post.html index 3284dea2b0..f49f6c4636 100644 --- a/phpBB/templates/subSilver/mcp_post.html +++ b/phpBB/templates/subSilver/mcp_post.html @@ -1,6 +1,6 @@ <!-- INCLUDE mcp_header.html --> -<form method="post" name="main" action="{S_FORM_ACTION}"> +<form method="post" name="main" action="{S_MCP_ACTION}"> <table width="100%" cellpadding="3" cellspacing="1" border="0" class="tablebg"> <tr> <th colspan="2" align="center">{L_POST_DETAILS}</th> @@ -24,18 +24,72 @@ <td class="row2"><span class="gen">{POST_SUBJECT}</span></td> </tr> <tr> - <td class="row1"><b class="gen">{L_MESSAGE_BODY}</b></td> - <td class="row2"><span class="gen">{MESSAGE}</span></td> + <td class="spacer" colspan="2" height="1"><img src="images/spacer.gif" alt="" width="1" height="1" /></td> + </tr> + <tr> + <td class="row2" colspan="2"><span class="gen">{MESSAGE}</span></td> </tr> </table> +<!-- IF S_POST_REPORTED --> +<br /><a name="reports"></a> + +<table width="100%" cellpadding="3" cellspacing="1" border="0" class="tablebg"> + <tr> + <th colspan="2" align="center">{L_REPORTS}</th> + </tr> + <tr> + <td class="row1"><b class="gen">{L_REPORTER}</b></td> + <td class="row2"><span class="gen">{REPORTER}</span></td> + </tr> + <tr> + <td class="row1"><b class="gen">{L_REPORT_TIME}</b></td> + <td class="row2"><span class="gensmall">{REPORT_TIME}</span></td> + </tr> + <tr> + <td class="row1"><b class="gen">{L_REASON}</b></td> + <td class="row2"><span class="gen">{REASON_TITLE}</span></td> + </tr> + <tr> + <td class="row1" valign="top"><b class="gen">{L_DESCRIPTION}</b></td> + <td class="row2"><span class="gen">{REASON_DESCRIPTION}</span></td> + </tr> + <tr> + <td class="cat" align="center" colspan="2"><input name="delete_report" class="liteoption" type="submit" value="{L_DISCARD_REPORT}" /><!-- IF S_CAN_DELETE --> <input name="delete_post" class="mainoption" type="submit" value="{L_DISCARD_POST}" /><!-- ENDIF --></td> + </tr> +</table> +<!-- ENDIF --> + +<!-- IF S_CAN_CHANGE_POSTER or S_CAN_LOCK_POST--> +<br /><a name="mod"></a> + +<table width="100%" cellpadding="3" cellspacing="1" border="0" class="tablebg"> + <tr> + <th colspan="2" align="center">{L_MOD_OPTIONS}</th> + </tr> + <!-- IF S_CAN_CHANGE_POSTER --> + <tr> + <td class="row1" valign="top"><b class="gen">{L_CHANGE_POSTER}</b></td> + <td class="row2"><!-- IF S_NO_USERS_FOUND --><b class="gen">{L_NO_USERS_FOUND}<br /></b><!-- ENDIF --><!-- IF S_USER_SELECT --><select name="user_id">{S_USER_SELECT}</select> <input type="submit" class="post" name="change_poster" value="{L_CONFIRM}" /><br /><!-- ENDIF --> <input class="post" type="text" name="username" /> <input class="post" type="submit" name="change_poster_search" value="{L_SEARCH}" /></td> + </tr> + <!-- ENDIF --> + <tr> + <td class="row1" valign="top"><b class="gen">{L_POST_OPTIONS}</b></td> + <td class="row2"><!-- IF S_CAN_LOCK_POST --><input type="checkbox" name="lock_post" {S_LOCK_POST_CHECKED}/><span class="genmed">{L_LOCK_POST} [{L_LOCK_POST_EXPLAIN}]<br /></span><!-- ENDIF --></td> + </tr> + <tr> + <td class="cat" align="center" colspan="2"><input class="mainoption" type="submit" value="{L_UPDATE}" /></td> + </tr> +</table> +<!-- ENDIF --> + <!-- IF S_CAN_VIEWIP --> <br /><a name="ip"></a> <table width="100%" cellpadding="3" cellspacing="1" border="0" class="tablebg"> <tr> <th colspan="2" align="center">{L_IP_INFO}</th> - </th> + </tr> <tr> <td colspan="2" height="28" class="cat"><b class="gen">{L_OTHER_USERS}</b></td> </tr> diff --git a/phpBB/templates/subSilver/mcp_queue.html b/phpBB/templates/subSilver/mcp_queue.html index 047f200ee2..0f151daae2 100644 --- a/phpBB/templates/subSilver/mcp_queue.html +++ b/phpBB/templates/subSilver/mcp_queue.html @@ -14,7 +14,7 @@ <th> {L_SUBJECT} </th> <th> {L_AUTHOR} </th> <th> {L_POST_TIME} </th> - <th> {L_SELECT} </th> + <th width="5%"> {L_SELECT} </th> </tr> <!-- IF S_HAS_UNAPPROVED_TOPICS --> <tr> @@ -43,7 +43,7 @@ <td class="row1"><span class="gen">{unapproved_posts.SUBJECT}</span></td> <td class="row2" align="center" width="15%"><span class="gen">{unapproved_posts.AUTHOR}</span></td> <td class="row1" align="center" width="15%"><span class="gensmall">{unapproved_posts.POST_TIME}</span></td> - <td class="row2" align="center" width="5%">{unapproved_posts.S_CHECKBOX}</td> + <td class="row2" align="center">{unapproved_posts.S_CHECKBOX}</td> </tr> <!-- END unapproved_posts --> <!-- IF S_HAS_UNAPPROVED_TOPICS or S_HAS_UNAPPROVED_POSTS --> diff --git a/phpBB/templates/subSilver/mcp_topic.html b/phpBB/templates/subSilver/mcp_topic.html index 5699ad7133..5eeb458469 100644 --- a/phpBB/templates/subSilver/mcp_topic.html +++ b/phpBB/templates/subSilver/mcp_topic.html @@ -83,7 +83,7 @@ <tr><td><table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr align="left" valign="middle"> <td>{UNAPPROVED_IMG}</td> - <td class="gensmall" width="100%"> {L_POST_NOT_BEEN_APPROVED} [ <a href="{postrow.U_MCP_APPROVE}">{L_APPROVE_POST}</a> ]</td> + <td class="gensmall" width="100%"> <b><a style="color:green" href="{postrow.U_APPROVE}">{L_POST_NOT_APPROVED}</a></b></td> </tr> </table></td></tr> <tr> |