56
|
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
|
2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
3 <html xmlns="http://www.w3.org/1999/xhtml" metal:use-macro="here/main_template/macros/page">
|
|
4 <head>
|
|
5 <tal:block metal:fill-slot="head">
|
|
6 </tal:block>
|
|
7 </head>
|
|
8 <body>
|
|
9 <div class="center" metal:fill-slot="center">
|
|
10
|
|
11 <h2 tal:condition="not:here/isCurrentVersion">
|
|
12 This is an outdated version of this project! For the current version, please refer to
|
|
13 <a tal:define="parentUrl python:here.aq_parent.getUrl(baseUrl=proBaseUrl)"
|
|
14 tal:attributes="href parentUrl" tal:content="parentUrl"/>
|
|
15 </h2>
|
|
16 <tal:x tal:define="started here/getStartedAt" tal:condition="here/isArchivedProject">
|
|
17 <p>
|
|
18 (<span tal:condition="started" tal:content="string:$started-"/><span tal:condition="not:started">Completed:</span>
|
|
19 <span tal:content="here/getCompletedAt"/>)
|
|
20 </p>
|
|
21 </tal:x>
|
|
22
|
|
23 <h1 tal:content="here/getProjectTitle">History of Scientific Objectivity, 18th-19th Cs</h1>
|
|
24 <p class="maintext_authors">
|
|
25 <tal:block tal:repeat="person here/getResponsibleScientistsList">
|
|
26 <a tal:define="username person/username|nothing" tal:omit-tag="python:not username or not here.getStaffFolder().isActiveMember(key=person.get('key',None))"
|
|
27 tal:attributes="href string:$root/${secmap/staff}/members/$username" tal:content="person/name"> Name of
|
|
28 responsible person</a><tal:block tal:condition="not:repeat/person/end">, </tal:block>
|
|
29 </tal:block>
|
|
30 </p>
|
|
31
|
|
32 <p class="maintext_more" tal:define="others here/getInvolvedScholars" tal:condition="others">
|
|
33 Other involved scholars: <span tal:content="structure others">Scholars </span>
|
|
34 </p>
|
|
35 <p class="maintext_more" tal:define="partners here/getCooperationPartners" tal:condition="partners">
|
|
36 Cooperation Partners: <span tal:content="structure partners">Partners</span>
|
|
37 </p>
|
|
38
|
|
39 <h2>Selected publications</h2>
|
|
40 <tal:block tal:define="
|
|
41 books python:here.getSelectedPublications();
|
|
42
|
|
43 ">
|
|
44
|
|
45 <tal:block >
|
|
46
|
|
47 <ul class="publicationlist">
|
|
48 <li tal:repeat="found3 books">
|
|
49 <span>
|
|
50 <a tal:attributes="href python:'http://pubman.mpiwg-berlin.mpg.de/pubman/faces/viewItemFullPage.jsp?itemId='+found3.escidocid"><span tal:replace="structure python:here.mpiwgPubman.getEntryFromPubman(found3.escidocid)"/>
|
|
51 </a>
|
|
52 </span>
|
|
53
|
|
54 </li>
|
|
55 </ul>
|
|
56 </tal:block>
|
|
57
|
|
58
|
|
59
|
|
60 </tal:block>
|
|
61
|
|
62 <!--
|
|
63 <p>
|
|
64 <a href="/institutsbiblio/FMPro?-db=personal-www&-max=1&-Lay=ALL&-format=search_inst_bib.html&ID=[FMP-Field: ID]&-Error=null.html&-find" target="_new">
|
|
65 search the institute's bibliography </a>
|
|
66 -->
|
|
67
|
|
68 </div>
|
|
69 </body>
|
|
70 </html> |