Subversion Repositories Applications.papyrus

Rev

Rev 831 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
831 florian 1
<div class="PhorumNavBlock" style="text-align: left;">
2
  <span class="PhorumNavHeading PhorumHeadingLeft">{LANG->Goto}:</span>&nbsp;{IF URL->INDEX}<a class="PhorumNavLink" href="{URL->INDEX}">{LANG->ForumList}</a>&bull;{/IF}<a class="PhorumNavLink" href="{URL->POST}">{LANG->NewTopic}</a>&bull;<a class="PhorumNavLink" href="{URL->SEARCH}">{LANG->Search}</a>&bull;{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}&nbsp;</th>
12
    <th class="PhorumTableHeader" align="left" nowrap="nowrap" width="150">{LANG->StartedBy}&nbsp;</th>
13
    <th class="PhorumTableHeader" align="left" nowrap="nowrap" width="150">{LANG->LastPost}&nbsp;</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}&nbsp;<span class="PhorumNewFlag">{ROWS->new}</span>{/IF}
26
        {IF ROWS->pages}<span class="PhorumListPageLink">&nbsp;&nbsp;&nbsp;{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}&nbsp;&#8226;&nbsp;<a href="{ROWS->move_url}">{LANG->MoveThread}</a>{/IF}&nbsp;&#8226;&nbsp;<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}&nbsp;</td>
31
      {/IF}
32
      <td class="PhorumTableRow<?php echo $rclass;?>" align="center" nowrap="nowrap">{ROWS->thread_count}&nbsp;</td>
33
      <td class="PhorumTableRow<?php echo $rclass;?>" nowrap="nowrap">{ROWS->linked_author}&nbsp;</td>
34
      <td class="PhorumTableRow<?php echo $rclass;?> PhorumSmallFont" nowrap="nowrap">
35
        {ROWS->lastpost}&nbsp;<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}&nbsp;<a class="PhorumNavLink" href="{URL->MARKREAD}">{LANG->MarkRead}</a>{/IF}
47
</div>