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
|
<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-attendees">
<h2>Attendees</h2>
<div class="portletBody portletContent"
tal:define="attendances context/attendances">
<ul>
<li tal:repeat="attendance attendances">
<a tal:replace="structure attendance/attendee/fmt:link">Foo Bar</a><br />
<div class="discreet">
<span tal:replace="python:view.formatDate(attendance.time_starts)">
2005-08-05</span> till
<span tal:replace="python:view.formatDate(attendance.time_ends)">
2005-08-15</span>
</div>
</li>
</ul>
<p tal:condition="not: attendances">
<img src="/@@/info" />
<i>No attendees yet registered.</i>
</p>
</div>
</div>
</tal:root>
|