
git-svn-id: svn://svn.cy55.de/Zope3/src/loops/trunk@1173 fd906abe-77d9-0310-91a1-e0d9ade77398
38 lines
1.5 KiB
XML
38 lines
1.5 KiB
XML
<metal:body define-macro="conceptlisting">
|
|
<div>
|
|
<h3 tal:attributes="class string:content-$level;
|
|
ondblclick item/openEditWindow">
|
|
<span i18n:translate="">Concept</span>:
|
|
<span tal:content="item/title">Title</span>
|
|
</h3>
|
|
<metal:listing define-macro="conceptlisting2">
|
|
<div tal:attributes="class string:content-$level;
|
|
ondblclick python: item.openEditWindow('configure.html')">
|
|
<h4>Parents</h4>
|
|
<div tal:repeat="related item/parents">
|
|
<a href="#"
|
|
tal:attributes="href string:${view/url}/.target${related/uniqueId}"
|
|
tal:content="related/title">Resource Title</a>
|
|
</div>
|
|
</div>
|
|
<div tal:attributes="class string:content-$level;
|
|
ondblclick python: item.openEditWindow('configure.html')">
|
|
<h4>Children</h4>
|
|
<div tal:repeat="related item/children">
|
|
<a href="#"
|
|
tal:attributes="href string:${view/url}/.target${related/uniqueId}"
|
|
tal:content="related/title">Resource Title</a>
|
|
</div>
|
|
</div>
|
|
<div tal:attributes="class string:content-$level;
|
|
ondblclick python: item.openEditWindow('resources.html')">
|
|
<h4>Resources</h4>
|
|
<div tal:repeat="related item/resources">
|
|
<a href="#"
|
|
tal:attributes="href string:${view/url}/.target${related/uniqueId}"
|
|
tal:content="related/title">Resource Title</a>
|
|
</div>
|
|
</div>
|
|
</metal:listing>
|
|
</div>
|
|
</metal:body>
|