source: products/quintagroup.quills.extras/trunk/quintagroup/quills/extras/portlets/recentcomments.pt @ 1257

Last change on this file since 1257 was 654, checked in by piv, 18 years ago

release 0.0.2 CMFMember compatibility

File size: 789 bytes
Line 
1<dl class="portlet portletRecentComments"
2    tal:define="comments view/getComments;">
3
4    <dt class="portletHeader">
5        <span class="portletTopLeft"></span>
6        <span class="tile"
7              tal:content="view/title">_title_</span>
8        <span class="portletTopRight"></span>
9    </dt>
10
11    <tal:block repeat="comment comments">
12
13      <dd class="portletItem odd"
14          tal:attributes="class python:repeat['comment'].odd() and 'portletItem even' or 'portletItem odd'">
15
16          <a href="" tal:attributes="href python:view.talkbackURL(comment)">
17              <span tal:replace ="comment/Title">foo</span>
18              <tal:author tal:condition="comment/Creator"> (<span tal:replace="comment/Creator">user</span>)</tal:author></a>
19      </dd>
20
21    </tal:block>
22
23</dl>
Note: See TracBrowser for help on using the repository browser.