39
|
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
|
2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
3 <html metal:define-macro="page">
|
|
4 <metal:x metal:use-macro="here/main_template/macros/page">
|
|
5 <head>
|
|
6 <tal:block metal:fill-slot="title">
|
|
7 <title tal:content="string:${here/getNumber} ${here/getProjectTitle}-Bibliography" />
|
|
8 </tal:block>
|
|
9 <tal:block metal:fill-slot="head"
|
|
10 tal:define="global proBaseUrl string:$root/${secmap/research}/projects;
|
|
11 global dept here/getDepartmentId;" />
|
|
12 </head>
|
|
13 <body>
|
|
14
|
|
15 <!-- middle column -->
|
|
16 <div class="center" metal:fill-slot="center">
|
|
17 <tal:block tal:replace="structure here/versionHeader" />
|
|
18 <tal:x tal:define="started here/getStartedAt" tal:condition="here/isArchivedProject">
|
|
19 <p>
|
|
20 (<span tal:condition="started" tal:content="string:$started-" /><span tal:condition="not:started">Completed:</span> <span
|
|
21 tal:content="here/getCompletedAt" />)
|
|
22 </p>
|
|
23 </tal:x>
|
|
24
|
|
25 <h1 tal:content="here/getProjectTitle">History of Scientific Objectivity, 18th-19th Cs</h1>
|
|
26 <p class="maintext_authors">
|
|
27 <tal:block tal:repeat="person here/getResponsibleScientistsList">
|
|
28 <a tal:omit-tag="python:not (person['username'] and here.isActiveMember(person['key']))"
|
|
29 tal:attributes="href string:$root/${secmap/staff}/members/${person/username}" tal:content="person/name"> Name of
|
|
30 responsible person</a>
|
|
31 <tal:block tal:condition="not:repeat/person/end">, </tal:block>
|
|
32 </tal:block>
|
|
33 </p>
|
|
34
|
|
35 <p class="maintext_more" tal:define="others here/getInvolvedScholars" tal:condition="others">
|
|
36 Other involved scholars: <span tal:content="structure others">Scholars </span>
|
|
37 </p>
|
|
38 <p class="maintext_more" tal:define="partners here/getCooperationPartners" tal:condition="partners">
|
|
39 Cooperation Partners: <span tal:content="structure partners">Partners</span>
|
|
40 </p>
|
|
41
|
|
42 <h2>Extended Bibliography</h2>
|
|
43
|
|
44 <tal:block
|
|
45 tal:define="
|
|
46 wgb python:here.getPublicationsOfTypes('workingGroupBook');
|
|
47 books python:here.getPublicationsOfTypes('book');
|
|
48 edited_books python:here.getPublicationsOfTypes('edited book');
|
|
49 articles python:here.getPublicationsOfTypes(['book','edited book'],neg=True);">
|
|
50
|
|
51 <tal:block tal:condition="wgb">
|
|
52 <h3>Working Group Books</h3>
|
|
53 <ul class="publicationlist">
|
|
54 <li tal:repeat="found3 wgb"><span tal:replace="structure python:here.decode(here.formatBibliography(found3))" /></li>
|
|
55 </ul>
|
|
56 </tal:block>
|
|
57 <tal:block tal:condition="books">
|
|
58 <h3>Books</h3>
|
|
59 <ul class="publicationlist">
|
|
60 <li tal:repeat="found3 books"><span tal:replace="structure python:here.decode(here.formatBibliography(found3))" />
|
|
61 </li>
|
|
62 </ul>
|
|
63 </tal:block>
|
|
64
|
|
65 <tal:block tal:condition="edited_books">
|
|
66 <h3>Edited Books</h3>
|
|
67 <ul class="publicationlist">
|
|
68 <li tal:repeat="found3 edited_books"><span
|
|
69 tal:replace="structure python:here.decode(here.formatBibliography(found3))" /></li>
|
|
70 </ul>
|
|
71 </tal:block>
|
|
72
|
|
73 <tal:block tal:condition="articles">
|
|
74 <h3>Articles and Chapters</h3>
|
|
75 <ul class="publicationlist">
|
|
76 <li tal:repeat="found3 articles"><span tal:replace="structure python:here.decode(here.formatBibliography(found3))" />
|
|
77 </li>
|
|
78 </ul>
|
|
79 </tal:block>
|
|
80 </tal:block>
|
|
81
|
|
82 </div>
|
|
83
|
|
84 </body>
|
|
85 </metal:x>
|
|
86 </html> |