cybertools/tracking/track.pt
helmutm bef6db8f1d provide view for single tracks
git-svn-id: svn://svn.cy55.de/Zope3/src/cybertools/trunk@3051 fd906abe-77d9-0310-91a1-e0d9ade77398
2008-12-08 12:23:49 +00:00

36 lines
812 B
XML

<html metal:use-macro="context/@@standard_macros/view"
i18n:domain="zope">
<body>
<div metal:fill-slot="body">
<h1>Track Details for <span tal:content="view/id" /></h1>
<table>
<tr>
<td>Task:</td>
<td><a tal:omit-tag="not:view/taskUrl"
tal:attributes="href view/taskUrl"
tal:content="view/taskTitle" /></td>
</tr>
<tr>
<td>Run:</td>
<td tal:content="view/run"></td>
</tr>
<tr>
<td>User:</td>
<td><a tal:omit-tag="not:view/userUrl"
tal:attributes="href view/userUrl"
tal:content="view/userTitle" /></td>
</tr>
<tr>
<td>Timestamp:</td>
<td tal:content="view/timeStamp"></td>
</tr>
</table>
<h2>Data</h2>
<div tal:content="context/data" />
</div>
</body>
</html>