00001 <?php
00002
00003
00035 ?>
00036 <table id="forum-topic-<?php print $topic_id; ?>">
00037 <thead>
00038 <tr><?php print $header; ?></tr>
00039 </thead>
00040 <tbody>
00041 <?php foreach ($topics as $topic): ?>
00042 <tr class="<?php print $topic->zebra;?>">
00043 <td class="icon"><?php print $topic->icon; ?></td>
00044 <td class="title"><?php print $topic->title; ?></td>
00045 <?php if ($topic->moved): ?>
00046 <td colspan="3"><?php print $topic->message; ?></td>
00047 <?php else: ?>
00048 <td class="replies">
00049 <?php print $topic->num_comments; ?>
00050 <?php if ($topic->new_replies): ?>
00051 <br />
00052 <a href="<?php print $topic->new_url; ?>"><?php print $topic->new_text; ?></a>
00053 <?php endif; ?>
00054 </td>
00055 <td class="created"><?php print $topic->created; ?>
00056 <td class="last-reply"><?php print $topic->last_reply; ?>
00057 <?php endif; ?>
00058 </tr>
00059 <?php endforeach; ?>
00060 </tbody>
00061 </table>
00062 <?php print $pager; ?>