loops/browser/concept.pt
helmutm 952cd7e9a8 Basic refactoring of concept stuff as preparation for user interface features
git-svn-id: svn://svn.cy55.de/Zope3/src/loops/trunk@1070 fd906abe-77d9-0310-91a1-e0d9ade77398
2006-02-12 15:38:29 +00:00

38 lines
1.2 KiB
XML

<html metal:use-macro="views/standard_macros/view">
<head>
<style metal:fill-slot="style_slot">
</style>
</head>
<body>
<div metal:fill-slot="body">
<h1 tal:content="context/title">Concept Title</h1>
<div class="row">
<span class="label">Sub-Concepts</span>:
<span class="field"
tal:repeat="concept view/children">
<a href="#"
tal:attributes="href concept/url"
tal:content="concept/title">subtask</a>
<span class="field" tal:condition="not:repeat/concept/end"> - </span>
</span>
</div>
<div class="row">
<span class="label">Parent Concepts</span>:
<span class="field"
tal:repeat="concept view/parents">
<a href="#"
tal:attributes="href concept/url"
tal:content="concept/title">subtask</a>
<span class="field" tal:condition="not:repeat/concept/end"> - </span>
</span>
</div>
<div class="row">
<span class="label">Last Modified</span>:
<span class="field" tal:content="view/modified">2004-08-28</span>
</div>
</div>
</body>
</html>