]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - themes/default/templates/blogform.tmpl
Simplified strings for easier translation
[SourceForge/phpwiki.git] / themes / default / templates / blogform.tmpl
1 <?php
2   rcs_id('$Id: blogform.tmpl,v 1.4 2004-05-18 14:47:21 rurban Exp $');
3 ?>
4 <div class="wikiblog wikiblog-form">
5 <form action="<?=$request->getPostURL()?>" method="post" class="wikiaction"
6       accept-charset="<?=$charset?>">
7   <input type="hidden" name="blog[pagename]" value="<?=$PAGENAME?>" />
8   <?= HiddenInputs($request->getArgs()) ?>
9   <table class="wikiblog-form">
10      <caption><?=_("Add a Comment")?></caption>
11      <col class="label" width="1*" /><col class="input" width="100*" />
12      <tr><th align="right"><?=_("Summary").':'?></th>
13          <td><input class="wikitext" type="text" size="60"
14                     maxlength="256" name="blog[summary]" value="" /></td>
15      </tr>
16      <tr><th align="right"><?=_("Comment").':'?></th>
17          <td><textarea class="blogedit" rows="5" cols="60"
18                        name="blog[body]" wrap="virtual"></textarea></td>
19      </tr>
20      <tr><td colspan="2" align="center" class="submit-button"
21              ><input type="submit" value="<?=_("Add Comment")?>"
22                      name="blog[addblog]" class="wikiaction" /></td>
23      </tr>
24   </table>
25 </form>
26 </div>
27