1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
<tal:root
xmlns:tal="http://xml.zope.org/namespaces/tal"
xmlns:metal="http://xml.zope.org/namespaces/metal"
omit-tag="">
<div metal:define-macro="show_result">
<tal:comment condition="nothing">
Expects a parameter called 'result'.
</tal:comment>
<img tal:attributes="src python:view.iconForCodeImportResultStatus(result.status);
title result/status/title"/>
Import started
<tal:when replace="result/date_job_started/fmt:displaydate">
4 hours ago
</tal:when>
on <tal:machine replace="structure result/machine/fmt:link" />
and finished
<tal:when replace="result/date_job_finished/fmt:displaydate">
3 hours ago
</tal:when>
taking
<tal:duration replace="result/job_duration/fmt:approximateduration">
five minutes
</tal:duration>
<tal:log-file condition="result/log_file">
—
<a tal:attributes="href result/log_file/http_url">
see the log
</a>
</tal:log-file>
</div>
</tal:root>
|