831 |
florian |
1 |
<div class="PhorumNavBlock" style="text-align: left;">
|
|
|
2 |
<span class="PhorumNavHeading PhorumHeadingLeft">{LANG->Goto}:</span> {IF URL->INDEX}<a class="PhorumNavLink" href="{URL->INDEX}">{LANG->ForumList}</a>•{/IF}<a class="PhorumNavLink" href="{URL->POST}">{LANG->NewTopic}</a>•<a class="PhorumNavLink" href="{URL->SEARCH}">{LANG->Search}</a>•{INCLUDE loginout_menu}
|
|
|
3 |
</div>
|
|
|
4 |
{INCLUDE paging}
|
|
|
5 |
<table border="0" cellspacing="0" class="PhorumStdTable">
|
|
|
6 |
<tr>
|
|
|
7 |
<th class="PhorumTableHeader" align="left">{LANG->Subject}</th>
|
|
|
8 |
{IF VIEWCOUNT_COLUMN}
|
|
|
9 |
<th class="PhorumTableHeader" align="center" width="40">{LANG->Views}</th>
|
|
|
10 |
{/IF}
|
|
|
11 |
<th class="PhorumTableHeader" align="center" nowrap="nowrap" width="80">{LANG->Posts} </th>
|
|
|
12 |
<th class="PhorumTableHeader" align="left" nowrap="nowrap" width="150">{LANG->StartedBy} </th>
|
|
|
13 |
<th class="PhorumTableHeader" align="left" nowrap="nowrap" width="150">{LANG->LastPost} </th>
|
|
|
14 |
</tr>
|
|
|
15 |
<?php $rclass="Alt"; ?>
|
|
|
16 |
{LOOP ROWS}
|
|
|
17 |
<?php if($rclass=="Alt") $rclass=""; else $rclass="Alt"; ?>
|
|
|
18 |
<tr>
|
|
|
19 |
<td class="PhorumTableRow<?php echo $rclass;?>">
|
|
|
20 |
<?php echo $PHORUM['TMP']['marker'] ?>
|
|
|
21 |
{IF ROWS->sort PHORUM_SORT_STICKY}<span class="PhorumListSubjPrefix">{LANG->Sticky}: </span>{/IF}
|
|
|
22 |
{IF ROWS->sort PHORUM_SORT_ANNOUNCEMENT}<span class="PhorumListSubjPrefix">{LANG->Announcement}: </span>{/IF}
|
|
|
23 |
{IF ROWS->moved}<span class="PhorumListSubjPrefix">{LANG->MovedSubject}: </span>{/IF}
|
|
|
24 |
<a href="{ROWS->url}">{ROWS->subject}</a>
|
|
|
25 |
{IF ROWS->new} <span class="PhorumNewFlag">{ROWS->new}</span>{/IF}
|
|
|
26 |
{IF ROWS->pages}<span class="PhorumListPageLink"> {LANG->Pages}: {ROWS->pages}</span>{/IF}
|
|
|
27 |
{IF MODERATOR true}<br /><span class="PhorumListModLink"><a href="javascript:if(window.confirm('{LANG->ConfirmDeleteThread}')) window.location='{ROWS->delete_url2}';">{LANG->DeleteThread}</a>{IF ROWS->move_url} • <a href="{ROWS->move_url}">{LANG->MoveThread}</a>{/IF} • <a href="{ROWS->merge_url}">{LANG->MergeThread}</a></span>{/IF}
|
|
|
28 |
</td>
|
|
|
29 |
{IF VIEWCOUNT_COLUMN}
|
|
|
30 |
<td class="PhorumTableRow<?php echo $rclass;?>" align="center">{ROWS->viewcount} </td>
|
|
|
31 |
{/IF}
|
|
|
32 |
<td class="PhorumTableRow<?php echo $rclass;?>" align="center" nowrap="nowrap">{ROWS->thread_count} </td>
|
|
|
33 |
<td class="PhorumTableRow<?php echo $rclass;?>" nowrap="nowrap">{ROWS->linked_author} </td>
|
|
|
34 |
<td class="PhorumTableRow<?php echo $rclass;?> PhorumSmallFont" nowrap="nowrap">
|
|
|
35 |
{ROWS->lastpost} <br />
|
|
|
36 |
<span class="PhorumListSubText">
|
|
|
37 |
<a href="{ROWS->last_post_url}">{LANG->LastPostLink}</a> {LANG->by} {ROWS->last_post_by}
|
|
|
38 |
</span>
|
|
|
39 |
</td>
|
|
|
40 |
</tr>
|
|
|
41 |
{/LOOP ROWS}
|
|
|
42 |
</table>
|
|
|
43 |
{INCLUDE paging}
|
|
|
44 |
<div class="PhorumNavBlock" style="text-align: left;">
|
|
|
45 |
<span class="PhorumNavHeading PhorumHeadingLeft">{LANG->Options}:</span>
|
|
|
46 |
{IF LOGGEDIN true} <a class="PhorumNavLink" href="{URL->MARKREAD}">{LANG->MarkRead}</a>{/IF}
|
|
|
47 |
</div>
|