annotate zpt/project/extendedBibliography_template.zpt @ 57:84879a3f91a6

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