cybertools/integrator/browser/view.pt
helmutm 018beff4a5 reorganize templates; show icon and title of current object
git-svn-id: svn://svn.cy55.de/Zope3/src/cybertools/trunk@2663 fd906abe-77d9-0310-91a1-e0d9ade77398
2008-06-03 15:56:24 +00:00

30 lines
806 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:listing define-macro="listing">
<dl>
<tal:item repeat="item view/content">
<dt>
<a tal:attributes="href item/url">
<img width="16" height="16"
src="http://localhost:8080/plone/folder_icon.gif"
alt="BSCW Repository"
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>