[CMF-checkins] CVS: CMF - discussion_reply_form.pt:1.1
andrew@digicool.com
andrew@digicool.com
Mon, 25 Jun 2001 13:29:21 -0400 (EDT)
Update of /cvs-repository/CMF/CMFDecor/skins/zpt_generic
In directory korak.digicool.com:/tmp/cvs-serv16888/zpt_generic
Added Files:
discussion_reply_form.pt
Log Message:
*in document_edit_form fixed a bug in the seatbelts which
resulted from some dtml being left in the pagetemplate.
*discussion_reply_form - addition skin converted.
--- Added File discussion_reply_form.pt in package CMF ---
<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">
<form method="POST" action=""
tal:attributes="action python: here.absolute_url() + '/talkback'">
<input type="hidden" name="Creator" value=""
tal:define="member python: here.portal_membership.getAuthenticatedMember()"
tal:attributes="value member">
<table class="FormLayout">
<tr>
<th align="left">Subject (Title)</th>
<td><input name="title" value=""
tal:attributes="value here/title_override|here/title">
</td>
</tr>
<tr>
<td colspan="2">
<b>Reply body</b><br>
<textarea name="text" cols="70" rows="10" wrap="soft" style="width: 100%"
tal:content="here/text_override | nothing"></textarea>
</td>
</tr>
<tr>
<td></td>
<td>
<input type="submit" value="Preview" name=""
tal:define="hId here/getId"
tal:attributes="name python: hId + '/discussion_reply_preview:method'">
<input type="submit" value="Reply" name="discussion_reply:method'">
</td>
</tr>
</table>
</form>
</div>
</body>
</html>