cybertools/integrator/browser/view.pt
helmutm 73311e2cf8 rearrange classes, added separate BSCWConnection class
git-svn-id: svn://svn.cy55.de/Zope3/src/cybertools/trunk@2675 fd906abe-77d9-0310-91a1-e0d9ade77398
2008-06-07 11:54:06 +00:00

40 lines
918 B
XML

<!-- $Id$ -->
<metal:view define-macro="heading"
tal:define="item view/item">
<h2>
<img tal:attributes="src item/icon" />
<span tal:content="item/title">Title</span>
</h2>
</metal:view>
<metal:data define-macro="data">
</metal:data>
<metal:document define-macro="document">
</metal:document>
<metal:url define-macro="url">
</metal:url>
<metal:listing define-macro="listing">
<dl tal:condition="python: view.remoteProxy.itemType == 'Folder'">
<tal:item repeat="item view/content">
<dt>
<a tal:attributes="href item/url">
<img width="16" height="16"
tal:attributes="src item/icon" />
</a>
<a tal:attributes="href item/url">
<span tal:content="item/title" />
</a>
</dt>
<dd tal:content="item/description">
</dd>
</tal:item>
</dl>
</metal:listing>