2009-05-25 20:59:25 +02:00
|
|
|
<tal:block define="errors options/state/getErrors|nothing;
|
|
|
|
replies view/replies | nothing;"
|
2009-05-22 19:30:52 +02:00
|
|
|
i18n:domain="plone">
|
|
|
|
|
2009-05-25 21:24:21 +02:00
|
|
|
<div class="discussion">
|
2009-05-26 21:58:33 +02:00
|
|
|
|
2009-05-25 21:24:21 +02:00
|
|
|
<tal:getreplies repeat="reply_dict replies">
|
|
|
|
|
|
|
|
<div class="comment"
|
|
|
|
tal:define="reply python:reply_dict[1]">
|
|
|
|
|
|
|
|
<h3>
|
|
|
|
<a name="comments" tal:attributes="name reply/title">
|
|
|
|
<span tal:replace="reply/title">Comment title</span>
|
|
|
|
</a>
|
|
|
|
</h3>
|
|
|
|
|
2009-05-26 09:24:52 +02:00
|
|
|
<div class="documentByLine"
|
2009-05-25 21:24:21 +02:00
|
|
|
tal:define="creator reply/Creator;
|
2009-05-26 09:24:52 +02:00
|
|
|
anonymous_creator python:creator in ('Anonymous User', '');">
|
2009-05-25 21:24:21 +02:00
|
|
|
<tal:posted i18n:translate="label_comment_by">Posted by</tal:posted>
|
2009-05-26 09:24:52 +02:00
|
|
|
<tal:name content="creator"
|
2009-05-25 21:24:21 +02:00
|
|
|
condition="not:anonymous_creator">Poster Name</tal:name>
|
|
|
|
<tal:name i18n:translate="label_anonymous_user"
|
|
|
|
condition="anonymous_creator">Anonymous User</tal:name>
|
|
|
|
<tal:at i18n:translate="label_commented_at">at</tal:at>
|
2009-05-26 09:24:52 +02:00
|
|
|
<span tal:replace="python:view.format_time(reply.modification_date)">8/23/2001 12:40:44 PM</span>
|
|
|
|
</div>
|
2009-05-25 21:24:21 +02:00
|
|
|
|
|
|
|
<div class="commentBody"
|
|
|
|
tal:content="structure reply/text">
|
|
|
|
This is the body text of the comment.
|
|
|
|
</div>
|
|
|
|
|
2009-05-26 21:58:33 +02:00
|
|
|
<a href="#" class="reply-to-comment-button" title="reply to this comment"
|
|
|
|
tal:attributes="onclick string:createReplyToCommentForm(${reply/id});
|
|
|
|
id string:reply-to-comment-${reply/id}-button">
|
|
|
|
<img src="++resource++plone.app.discussion.images/reply.gif" />
|
|
|
|
</a>
|
|
|
|
|
2009-05-25 21:24:21 +02:00
|
|
|
</div>
|
|
|
|
|
|
|
|
</tal:getreplies>
|
|
|
|
</div>
|
|
|
|
|
2009-05-25 20:59:25 +02:00
|
|
|
<div class="reply">
|
|
|
|
<fieldset>
|
|
|
|
|
|
|
|
<legend i18n:translate="legend_add_comment">Add comment</legend>
|
|
|
|
<p i18n:translate="description_add_comment">
|
|
|
|
You can add a comment by filling out the form below. Plain text
|
|
|
|
formatting.
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<form name="reply"
|
|
|
|
action=""
|
|
|
|
method="get"
|
|
|
|
tal:attributes="action string:${context/absolute_url}/++conversation++default/@@add-comment">
|
|
|
|
|
|
|
|
<div class="field"
|
|
|
|
tal:define="error errors/subject|nothing;"
|
|
|
|
tal:attributes="class python: error and 'field error' or 'field'">
|
|
|
|
|
|
|
|
<label for="subject" i18n:translate="label_subject">Subject</label>
|
|
|
|
|
|
|
|
<span class="fieldRequired" title="Required"
|
|
|
|
i18n:attributes="title title_required;"
|
|
|
|
i18n:translate="label_required">(Required)</span>
|
|
|
|
|
|
|
|
<div tal:content="error">Validation error output</div>
|
|
|
|
|
|
|
|
<input name="subject"
|
|
|
|
id="subject"
|
|
|
|
value=""
|
|
|
|
size="40"
|
|
|
|
tal:attributes="value request/subject|request/title_override|nothing;" />
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="field"
|
|
|
|
tal:define="error errors/body_text|nothing;"
|
|
|
|
tal:attributes="class python: error and 'field error' or 'field'">
|
|
|
|
|
|
|
|
<label for="body_text" i18n:translate="label_comment">Comment</label>
|
|
|
|
|
|
|
|
<span class="fieldRequired" title="Required"
|
|
|
|
i18n:attributes="title title_required;"
|
|
|
|
i18n:translate="label_required">(Required)</span>
|
|
|
|
|
|
|
|
<div tal:content="error">Validation error output</div>
|
|
|
|
|
|
|
|
<textarea name="body_text"
|
|
|
|
id="body_text"
|
|
|
|
cols="40"
|
|
|
|
rows="8"
|
|
|
|
tal:content="request/body_text|request/text_override | nothing"></textarea>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="formControls">
|
|
|
|
|
|
|
|
<input class="context"
|
|
|
|
type="submit"
|
|
|
|
value="Add Comment"
|
|
|
|
name="form.button.AddComment"
|
|
|
|
i18n:attributes="value label_add_comment;" />
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<input type="hidden" name="form.submitted" value="1" />
|
|
|
|
|
|
|
|
</form>
|
|
|
|
</fieldset>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</tal:block>
|