loops/organize/comment/comment_macros.pt
helmutm a7312a0fa0 work in progress: comments; use new generic track view
git-svn-id: svn://svn.cy55.de/Zope3/src/loops/trunk@3052 fd906abe-77d9-0310-91a1-e0d9ade77398
2008-12-08 12:25:03 +00:00

34 lines
No EOL
1 KiB
XML

<html i18n:domain="loops">
<!-- $Id$ -->
<metal:comments define-macro="comments"
tal:condition="view/commentsAllowed">
<br />
<h2 i18n:translate="">Comments</h2>
<div class="button">
<a i18n:translate=""
tal:attributes="href python: view.addCommentUrlFor(item.context)">Add Comment</a>
</div>
<tal:comments define="comments item/comments"
tal:condition="comments">
<tal:comment tal:repeat="comment comments">
<br />
<div class="comment">
<h3>
<span tal:content="comment/subject">Resource Title</span></h3>
<div class="info">
<span tal:replace="comment/creator">John</span>,
<span tal:replace="comment/timeStamp">2007-03-30</span>
</div>
<p class="content"
tal:define="text comment/text;
contentType comment/contentType"
tal:content="structure python: view.renderText(text, contentType)" />
</div>
</tal:comment>
</tal:comments>
</metal:comments>
</html>