]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - themes/default/templates/wikiforum.tmpl
Remove rcs_id
[SourceForge/phpwiki.git] / themes / default / templates / wikiforum.tmpl
1 <?php // -*- php -*-
2 // $Id$
3 /* 
4 navigation headline: "MainForum / SubPage / ThisTopic" comes for free
5
6 other templates: forum-topics.tmpl: summary list of topics
7
8 this  template:  detailed list of threads per topic
9
10 action: "newtopic" or "postreply"
11 */
12 $CDATE = $WikiTheme->formatDateTime($FORUM_CTIME);
13 ?>
14 <div class="wikiforum wikiforum-form">
15 <form action="<?php echo $request->getPostURL()?>" method="post" class="wikiaction"
16       accept-charset="<?php echo CHARSET?>">
17   <input type="hidden" name="forum[title]" value="<?php echo $FORUM_PARENT ?>" />
18   <?php echo HiddenInputs($request->getArgs()) ?>
19   <table class="wikiforum wikiforum-list">
20     <caption><?php echo _("New Topic")?>  &nbsp;&nbsp; <?php echo _("Post new")?> </caption>
21     <col class="label" width="10%" /><col width="100%" />
22     <tr><th align="center"><?php echo _("Author")?></th><th align="center"><?php echo _("Message")?></th></tr>
23
24     <tr>
25       <td align="left"><?php echo WikiLink($FORUM_CREATOR, 'if_known')?></td>
26       <td>
27         <table class="wikiforum wikiforum-message">
28           <tr><td align="left"><?php echo fmt("Posted: %s",$CDATE)?></td>
29               <td align="right"><?php echo _("Reply")?></td></tr>
30           <tr><td><?php echo $CONTENT ?></td></tr>
31         </table>
32      </td>
33    </tr>
34
35   </table>
36 </form>
37 </div>
38