aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/styles
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2004-02-05 14:43:23 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2004-02-05 14:43:23 +0000
commit58f315b5e6e8fdaea25bd5a4d8a6d8073f07e03e (patch)
tree1810e947ed26098fc2a1333db1a2034f0d4dbfb8 /phpBB/styles
parent2a0bcbb592b1488af819f8e4cfabe5c6ed6cc08a (diff)
downloadforums-58f315b5e6e8fdaea25bd5a4d8a6d8073f07e03e.tar
forums-58f315b5e6e8fdaea25bd5a4d8a6d8073f07e03e.tar.gz
forums-58f315b5e6e8fdaea25bd5a4d8a6d8073f07e03e.tar.bz2
forums-58f315b5e6e8fdaea25bd5a4d8a6d8073f07e03e.tar.xz
forums-58f315b5e6e8fdaea25bd5a4d8a6d8073f07e03e.zip
Display active topic output for subfora if appropriate ... a little kludgy but works
git-svn-id: file:///svn/phpbb/trunk@4802 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/styles')
-rw-r--r--phpBB/styles/subSilver/template/viewforum_body.html69
1 files changed, 69 insertions, 0 deletions
diff --git a/phpBB/styles/subSilver/template/viewforum_body.html b/phpBB/styles/subSilver/template/viewforum_body.html
index 4c81b55ef2..63d896c1d5 100644
--- a/phpBB/styles/subSilver/template/viewforum_body.html
+++ b/phpBB/styles/subSilver/template/viewforum_body.html
@@ -14,6 +14,75 @@
<br clear="all" />
<!-- ENDIF -->
+ <!-- IF S_DISPLAY_ACTIVE -->
+ <table class="tablebg" width="100%" cellspacing="1">
+ <tr>
+ <td class="cat" colspan="<!-- IF S_TOPIC_ICONS -->7<!-- ELSE -->6<!-- ENDIF -->"><span class="nav">Active Topics</span></td>
+ </tr>
+
+ <tr>
+ <!-- IF S_TOPIC_ICONS -->
+ <th colspan="3">&nbsp;{L_TOPICS}&nbsp;</th>
+ <!-- ELSE -->
+ <th colspan="2">&nbsp;{L_TOPICS}&nbsp;</th>
+ <!-- ENDIF -->
+ <th>&nbsp;{L_AUTHOR}&nbsp;</th>
+ <th>&nbsp;{L_REPLIES}&nbsp;</th>
+ <th>&nbsp;{L_VIEWS}&nbsp;</th>
+ <th>&nbsp;{L_LAST_POST}&nbsp;</th>
+ </tr>
+
+ <!-- BEGIN topicrow -->
+
+ <tr>
+ <td class="row1" width="25" align="center">{topicrow.TOPIC_FOLDER_IMG}</td>
+ <!-- IF S_TOPIC_ICONS -->
+ <td class="row1" width="25" align="center">{topicrow.TOPIC_ICON_IMG}</td>
+ <!-- ENDIF -->
+ <td class="row1">
+ <!-- IF topicrow.S_TOPIC_UNAPPROVED -->
+ <a href="{topicrow.U_MCP_QUEUE}">{UNAPPROVED_IMG}</a>&nbsp;
+ <!-- ENDIF -->
+ <!-- IF topicrow.S_TOPIC_REPORTED -->
+ <a href="{topicrow.U_MCP_REPORT}">{REPORTED_IMG}</a>&nbsp;
+ <!-- ENDIF -->
+ <p class="topictitle">{topicrow.NEWEST_POST_IMG} {topicrow.ATTACH_ICON_IMG} <a href="{topicrow.U_VIEW_TOPIC}">{topicrow.TOPIC_TITLE}</a></p><p class="gensmall">{topicrow.GOTO_PAGE}</p></td>
+ <td class="row2" width="100" align="center"><p class="topicauthor">{topicrow.TOPIC_AUTHOR}</p></td>
+ <td class="row1" width="50" align="center"><p class="topicdetails">{topicrow.REPLIES}</p></td>
+ <td class="row2" width="50" align="center"><p class="topicdetails">{topicrow.VIEWS}</p></td>
+ <td class="row1" width="120" align="center">
+ <p class="topicdetails">{topicrow.LAST_POST_TIME}</p>
+ <p class="topicdetails">
+ <!-- IF forumrow.U_LAST_POSTER -->
+ <a href="{forumrow.U_LAST_POST_AUTHOR}">{topicrow.LAST_POST_AUTHOR}</a>
+ <!-- ELSE -->
+ {topicrow.LAST_POST_AUTHOR}
+ <!-- ENDIF -->
+ <a href="{forumrow.U_LAST_POST}">{topicrow.LAST_POST_IMG}</a>
+ </p>
+ </td>
+ </tr>
+
+ <!-- BEGINELSE -->
+
+ <tr>
+ <!-- IF S_TOPIC_ICONS -->
+ <td class="row1" colspan="7" height="30" align="center" valign="middle"><span class="gen">{L_NO_TOPICS}</span></td>
+ <!-- ELSE -->
+ <td class="row1" colspan="6" height="30" align="center" valign="middle"><span class="gen">{L_NO_TOPICS}</span></td>
+ <!-- ENDIF -->
+ </tr>
+ <!-- END topicrow -->
+
+ <tr align="center">
+ <td class="cat" colspan="<!-- IF S_TOPIC_ICONS -->8<!-- ELSE -->7<!-- ENDIF -->">&nbsp;</td>
+ </tr>
+ </table>
+
+ <br clear="all" />
+ <!-- ENDIF -->
+
+
<!-- IF S_HAS_SUBFORUM -->
<!-- INCLUDE viewforum_subforum.html -->
<!-- ENDIF -->