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
35
36
37
38
39
40
|
<tal:root
xmlns:tal="http://xml.zope.org/namespaces/tal"
xmlns:metal="http://xml.zope.org/namespaces/metal"
xmlns:i18n="http://xml.zope.org/namespaces/i18n"
omit-tag="">
<div class="portlet" id="portlet-details">
<h2>Meeting details</h2>
<div class="portletBody portletContent">
<tal:has_home_page condition="context/home_page">
<img src="/@@/link" />
<a tal:attributes="href context/home_page">
External Web page
</a><br />
</tal:has_home_page>
<b>Registered by:</b><br />
<a tal:replace="structure context/owner/fmt:link" /><br />
<tal:has_driver condition="context/driver">
<b>Driver:</b><br />
<a tal:replace="structure context/driver/fmt:link" /><br />
</tal:has_driver>
<b>Starts:</b><br />
<span tal:replace="python:view.formatDateTime(context.time_starts)">
08:00 12 Nov 2005</span><br />
<b>Ends:</b><br />
<span tal:replace="python:view.formatDateTime(context.time_ends)">
08:00 12 Nov 2005</span><br />
<tal:tz replace="context/time_zone" /> time zone.<br />
<tal:has_address condition="context/address">
<b>Address:</b><br />
<span tal:replace="context/address" />
<br />
</tal:has_address>
</div>
</div>
</tal:root>
|