loops/browser/subtasks_assign.pt
helmutm 10d9d20403 first steps towards assigning subtasks through the web
git-svn-id: svn://svn.cy55.de/Zope3/src/loops/trunk@367 fd906abe-77d9-0310-91a1-e0d9ade77398
2005-05-21 11:33:10 +00:00

47 lines
1.5 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>
<form action="." method="post"
tal:attributes="action context/@@absolute_url">
<div class="row">
<span class="label">Subtasks</span>:
<span class="field">
<input type="test" name="subtaskPath" />
</span>
</div>
<div class="row">
<input type="submit" name="subtask_assign:method" value="Assign Subtask" />
</div>
</form>
</div>
</body>
</html>