<html xmlns:tal="http://xml.zope.org/namespaces/tal"
      xmlns:metal="http://xml.zope.org/namespaces/metal"
      metal:use-macro="here/main_template/macros/master">
<body>
<div metal:fill-slot="main">

<h3 tal:content="request/form/title"></h3>

<div tal:define="pss modules/Products.PythonScripts.standard"
     tal:replace="structure python: pss.structured_text(request.form['text'])">Text Body</div>

<form method="POST" action="talkback"
      tal:attributes="action string:${here/absolute_url}/talkback">
 <input type="hidden" name="title" value=""
      tal:attributes="value request/form/title">
 <input type="hidden" name="text" value=""
      tal:attributes="value request/form/text">
  <input type="hidden" name="Creator" value=""
         tal:attributes="value here/portal_membership/getAuthenticatedMember">
 <table><tr>
  <td width="15%"></td>
  <td>
   <input type="submit" value="Edit" name=""
          tal:attributes="name string:${here/getId}/discussion_reply_form:method">
   <input type="submit" value="Reply" name="discussion_reply:method">
  </td>
 </tr></table>
</form>
</div>
</body>
</html>