diff options
author | Ludovic Arnaud <ludovic_arnaud@users.sourceforge.net> | 2003-03-19 01:44:44 +0000 |
---|---|---|
committer | Ludovic Arnaud <ludovic_arnaud@users.sourceforge.net> | 2003-03-19 01:44:44 +0000 |
commit | 5fde0d061e269ab9311b32f61753d4ed5c4354ca (patch) | |
tree | 904ff2497e5ede27202a695b3161dc420918cf28 /phpBB/templates/subSilver | |
parent | 1a7c52fe195785ace73c497b3c54ba7509f71e02 (diff) | |
download | forums-5fde0d061e269ab9311b32f61753d4ed5c4354ca.tar forums-5fde0d061e269ab9311b32f61753d4ed5c4354ca.tar.gz forums-5fde0d061e269ab9311b32f61753d4ed5c4354ca.tar.bz2 forums-5fde0d061e269ab9311b32f61753d4ed5c4354ca.tar.xz forums-5fde0d061e269ab9311b32f61753d4ed5c4354ca.zip |
Desesperatly trying to synchronise my different versions ;)
git-svn-id: file:///svn/phpbb/trunk@3676 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/templates/subSilver')
-rw-r--r-- | phpBB/templates/subSilver/mcp_front.html | 35 | ||||
-rw-r--r-- | phpBB/templates/subSilver/mcp_queue.html | 24 |
2 files changed, 39 insertions, 20 deletions
diff --git a/phpBB/templates/subSilver/mcp_front.html b/phpBB/templates/subSilver/mcp_front.html index eb606b9c9f..33af6e8d4d 100644 --- a/phpBB/templates/subSilver/mcp_front.html +++ b/phpBB/templates/subSilver/mcp_front.html @@ -1,9 +1,32 @@ <!-- INCLUDE mcp_header.html --> +<table class="tablebg" width="100%" cellspacing="1" cellpadding="2" border="0"> + <tr> + <td class="cat" colspan="5" height="28"><span class="cattitle">Latest 5 posts awaiting approval</span></td> + </tr> + <tr> + <th> {L_FORUM} </th> + <th> {L_TOPIC} </th> + <th> {L_SUBJECT} </th> + <th> {L_AUTHOR} </th> + <th> {L_POST_TIME} </th> + </tr> + <!-- BEGIN unapproved --> + <tr> + <td class="row1" width="15%"><span class="gen">{unapproved.FORUM}</span></td> + <td class="row2" width="18%"><span class="gen">{unapproved.TOPIC}</span></td> + <td class="row1"><span class="gen">{unapproved.SUBJECT}</span></td> + <td class="row2" align="center" width="15%" nowrap="nowrap"><span class="gen">{unapproved.AUTHOR}</span></td> + <td class="row1" align="center" width="10%" nowrap="nowrap"><span class="gensmall">{unapproved.POST_TIME}</span></td> + </tr> + <!-- BEGINELSE --> + <!-- END unapproved --> +</table> + <br /><br /> -Moderation queue:<br /> -There are xx posts waiting to be approved<br /> -<br /> -Reported posts:<br /> -There are xx reported posts to review<br /> -<br /><br /> + +<table class="tablebg" width="100%" cellspacing="1" cellpadding="2" border="0"> + <tr> + <td class="cat" colspan="2" height="28"><span class="cattitle">Latest 5 reported posts</span></td> + </tr> +</table>
\ No newline at end of file diff --git a/phpBB/templates/subSilver/mcp_queue.html b/phpBB/templates/subSilver/mcp_queue.html index cc82e91440..4812857941 100644 --- a/phpBB/templates/subSilver/mcp_queue.html +++ b/phpBB/templates/subSilver/mcp_queue.html @@ -9,29 +9,25 @@ <th> {L_POST_TIME} </th> <th> {L_SELECT} </th> </tr> - <!-- BEGIN postrow --> - <!-- IF postrow.S_TOPICS_HEADER --> + <!-- BEGIN unapproved --> + <!-- IF unapproved.S_TOPICS_HEADER --> <tr> <td class="row3" colspan="6"><b class="gensmall">{L_TOPICS}</b></td> </tr> - <!-- ELSEIF postrow.S_POSTS_HEADER --> + <!-- ELSEIF unapproved.S_POSTS_HEADER --> <tr> <td class="row3" colspan="6"><b class="gensmall">{L_POSTS}</b></td> </tr> <!-- ENDIF --> <tr> - <td class="row1" width="15%"><span class="gen">{postrow.FORUM}</span></td> - <td class="row2" width="18%"><span class="gen">{postrow.TOPIC}</span></td> - <td class="row1"><span class="gen">{postrow.SUBJECT}</span></td> - <td class="row2" align="center" width="15%"><span class="gen">{postrow.AUTHOR}</span></td> - <td class="row1" align="center" width="15%"><span class="gensmall">{postrow.POST_TIME}</span></td> - <td class="row2" align="center" width="5%">{postrow.S_CHECKBOX}</td> + <td class="row1" width="15%"><span class="gen">{unapproved.FORUM}</span></td> + <td class="row2" width="18%"><span class="gen">{unapproved.TOPIC}</span></td> + <td class="row1"><span class="gen">{unapproved.SUBJECT}</span></td> + <td class="row2" align="center" width="15%"><span class="gen">{unapproved.AUTHOR}</span></td> + <td class="row1" align="center" width="15%"><span class="gensmall">{unapproved.POST_TIME}</span></td> + <td class="row2" align="center" width="5%">{unapproved.S_CHECKBOX}</td> </tr> - <!-- BEGINELSE --> - <tr> - <td class="row1" colspan="6" height="28" align="center"><!-- IF FORUM_NAME -->{L_FORUM_QUEUE_EMPTY}<!-- ELSE -->{L_QUEUE_EMPTY}<!-- ENDIF --></td> - </tr> - <!-- END postrow --> + <!-- END unapproved --> </table> <table width="100%" cellspacing="2" cellpadding="2" border="0" align="center"> |