loops/browser/task_details.pt
helmutm ee89362de0 Added task_details view
git-svn-id: svn://svn.cy55.de/Zope3/src/loops/trunk@93 fd906abe-77d9-0310-91a1-e0d9ade77398
2004-08-29 08:23:13 +00:00

34 lines
1 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">Task Title</h1>
<div class="row">
<span class="label">Subtasks</span>:
<span class="field"
tal:repeat="task context/getSubtasks">
<span tal:content="task/title">subtask</span>
<span class="field" tal:condition="not:repeat/task/end"> - </span>
</span>
</div>
<div class="row">
<span class="label">Parent Tasks</span>:
<span class="field"
tal:repeat="task context/getParentTasks">
<span tal:content="task/title">parent task</span>
<span class="field" tal:condition="not:repeat/task/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>