100
|
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
|
2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
241
|
3 <html xmlns:tal="http://xml.zope.org/namespaces/tal" xmlns:metal="http://xml.zope.org/namespaces/metal"
|
|
4 xmlns="http://www.w3.org/1999/xhtml" metal:use-macro="here/main_template/macros/page">
|
100
|
5 <head>
|
|
6 <tal:block metal:fill-slot="head">
|
|
7 <tal:x define="global member here/getContent" />
|
|
8 </tal:block>
|
|
9 </head>
|
|
10 <body>
|
|
11 <div class="center" metal:fill-slot="center">
|
|
12 <h1>
|
|
13 <span tal:replace="member/title" /> <span tal:replace="python:here.decode(member.first_name)" /> <span
|
|
14 tal:replace="python:here.decode(member.last_name)" />
|
|
15 </h1>
|
|
16
|
|
17 <p>
|
|
18 <a tal:attributes="href python:here.getUrl(baseUrl=root+'/'+secmap['staff']+'/members')">main entry</a>
|
|
19 </p>
|
|
20
|
|
21 <h2>Talks and presentations</h2>
|
217
|
22
|
|
23 <tal:block tal:define="calendar here/getTalksCal">
|
|
24 <tal:block tal:condition="calendar">
|
241
|
25 <tal:block tal:define="talks python:calendar.getSortedItems(reverse=True)">
|
217
|
26 <table class="items shorter">
|
|
27 <tr tal:repeat="talk talks">
|
|
28 <tal:block tal:define="url python:talk.getValue('url')">
|
241
|
29 <td tal:content="python:talk.getDate()" />
|
|
30 <td><a class="external" target="_blank" tal:omit-tag="not:url" tal:attributes="href url"> <span
|
217
|
31 tal:replace="python:talk.getValue('location')" /> – <i><span
|
|
32 tal:replace="python:talk.getValue('title')" /></i>
|
|
33 </a></td>
|
|
34 </tal:block>
|
|
35 </tr>
|
|
36 </table>
|
|
37 </tal:block>
|
|
38 </tal:block>
|
|
39
|
|
40 <tal:block tal:condition="not:calendar">
|
|
41 <tal:block tal:define="talks here/getTalks" tal:condition="talks">
|
|
42 <table class="items shorter">
|
|
43 <tr tal:repeat="talk talks">
|
|
44 <td><span tal:content="talk/date" /></td>
|
241
|
45 <td><a class="external" target="_blank" tal:attributes="href talk/link" tal:omit-tag="not:talk/link"> <span tal:content="talk/place" />
|
217
|
46 – <i tal:content="talk/title" />
|
|
47 </a></td>
|
|
48 </tr>
|
|
49 </table>
|
|
50 </tal:block>
|
|
51 </tal:block>
|
|
52 </tal:block>
|
100
|
53 </div>
|
|
54 </body>
|
|
55 </html> |