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

Last change on this file since 1581 was 1259, checked in by koval, 15 years ago

added footer in template for recent entries portlet

File size: 928 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    <dd class="portletFooter">
24        <span class="portletBottomLeft"></span>
25        <span class="portletBottomRight"></span>
26    </dd>
27
28</dl>
Note: See TracBrowser for help on using the repository browser.