comparison zpt/harvest_members_main.zpt @ 0:bca61e893fcc

first checkin of MPIWGWeb r2 branch from CVS into mercurial
author casties
date Thu, 10 Jan 2013 17:52:13 +0100
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:bca61e893fcc
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
2 "http://www.w3.org/TR/1999/REC-html401-19991224/loose.dtd">
3 <html>
4 <body>
5
6 <div class="haupttext">
7 <p>&nbsp;</p>
8 <tal:block tal:define="found python:here.ZSQLInlineSearchU(_table='personal_www',key=here.getKeyUTF8(),publish_the_data='yes')">
9 <tal:block tal:condition="found">
10
11 <tal:block tal:define="founds2 python:here.ZSQLInlineSearch(_table='current_work',id_main=found.id,publish='yes')" tal:condition="founds2">
12 <h1>Current work</h1>
13
14 <p class="fliesstext" tal:repeat="found2 founds2">
15 <span tal:replace="found2/current"/>
16 </p>
17
18 </tal:block>
19
20 <tal:block tal:define="founds2 python:here.ZSQLInlineSearch(_table='research_interest',id_main=found.id,published='yes')" tal:condition="founds2">
21 <h1>Research interests</h1>
22 <ul class="liste">
23 <li tal:repeat="found2 founds2">
24 <span tal:replace="found2/interest"/>
25 </li>
26 </ul>
27 </tal:block>
28
29
30 <!-- Curriculum vitae -->
31 <tal:block tal:condition="not:python:here.ZSQLisEmpty(found.cv)">
32 <h1>Curriculum vitae</h1>
33 <p class="fliesstext" tal:content="structure python:here.formatAscii(found.cv)"> [FMP-Field: CV] </p>
34 </tal:block>
35
36 <!-- Awards -->
37 <tal:block tal:condition="not:python:here.ZSQLisEmpty(found.awards)">
38 <h1>Awards</h1>
39 <p class="fliesstext" tal:content="structure python:here.formatAscii(found.awards)"> [FMP-Field: awards, break] </p>
40 </tal:block>
41
42 <!-- Selected publications -->
43 <tal:block tal:condition="here/usePublicationsSpecial|python:False">
44 <h1>Selected publications</h1>
45 <ul class="liste">
46 <tal:block tal:replace="structure here/specialPublicationsField"/>
47 <li>
48 <a tal:attributes="href python:'publications_full?-table=personal_www&amp;id='+found.id">more</a>
49 </li>
50 </ul>
51 </tal:block>
52
53 <tal:block tal:condition="not:here/usePublicationsSpecial|python:False">
54 <tal:block tal:condition="python:here.ZSQLInlineSearch(storename='search3',_table='publications',id_main=found.id,_max=10000,publish='yes')">
55 <h1>Selected publications</h1>
56
57 <ul class="liste">
58 <li tal:repeat="found3 python:here.sortBibliography(here.ZSQLInlineSearch(storename='search3',_table='publications',id_main=found.id,_max=10000,publish='yes'),here.getPublicationSelectionMode())">
59 <span tal:replace="structure python:here.en.formatBibliography(here,found3)"/>
60 </li>
61 <li tal:condition="python:here.ZSQLFoundCount(storename='search3')>5">
62 <a tal:attributes="href python:'publications_full?-table=personal_www&amp;id='+found.id">more</a>
63 </li>
64 </ul>
65 </tal:block>
66 </tal:block>
67 <!-- Talks -->
68 <tal:block tal:define="founds4 python:here.ZSQLInlineSearch(storename='search4',_table='talks',id_main=found.id,_max=10000,_sort='priority',published='yes')" tal:condition="founds4">
69 <h1>Talks and presentations</h1>
70 <ul class="liste">
71 <li tal:repeat="found4 python:here.sortPriority(founds4)">
72 <span tal:condition="not:python:here.ZSQLisEmpty(found4.link)">
73 <a tal:attributes="href found4/link"><span tal:replace="found4/date"/> &#150; <span tal:replace="found4/place"/> &#150; <span tal:replace="found4/title"/></a>
74 </span>
75 <span tal:condition="python:here.ZSQLisEmpty(found4.link)">
76 <span tal:replace="found4/date"/> &#150; <span tal:replace="found4/place"/> &#150; <span tal:replace="found4/title"/>
77 </span>
78 </li>
79 <li tal:condition="python:here.ZSQLFoundCount(storename='search4')>5">
80 <a tal:attributes="href python:'talks_full?-table=personal_www&amp;id='+found.id">more</a>
81 </li>
82 </ul>
83 </tal:block>
84
85 <!-- >Teaching activities -->
86 <tal:block tal:define="founds5 python:here.ZSQLInlineSearch(storename='search5',_table='teaching',id_main=found.id,_max=1000,_sort='priority')" tal:condition="founds5">
87 <h1>Teaching activities</h1>
88 <ul class="liste">
89 <li tal:repeat="found5 python:here.sortPriority(founds5)">
90 <span tal:condition="not:python:here.ZSQLisEmpty(found5.link)">
91 <a tal:attributes="href found5/link"><span tal:replace="found5/date"/> &#150; <span tal:replace="found5/place"/> &#150; <span tal:replace="found5/title"/>
92 </a>
93 </span>
94 <span tal:condition="python:here.ZSQLisEmpty(found5.link)">
95 <span tal:replace="found5/date"/> &#150; <span tal:replace="found5/place"/> &#150; <span tal:replace="found5/title"/>
96 </span>
97 </li>
98 <li tal:condition="python:here.ZSQLFoundCount(storename='search5')>5" class="p_indent"><a tal:attributes="href python:'teaching_full?-table=personal_www&amp;id='+found.id">more</a>
99 </li>
100 </ul>
101 </tal:block>
102 </tal:block>
103 </tal:block>
104 </div>
105 </body>
106 </html>