view zpt/project/pubman/show_publications.zpt @ 61:04fb655633ef

more cleaning up projects.
author casties
date Thu, 02 May 2013 18:32:01 +0200
parents a6ace48c2bf2
children 33c663a08025
line wrap: on
line source

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
	  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" metal:use-macro="here/main_template/macros/page">
  <head>
    <tal:block metal:fill-slot="head">
      </tal:block>
  </head>
  <body>
   <div class="center" metal:fill-slot="center">
  
    <h2  tal:condition="not:here/isCurrentVersion">
      This is an outdated version of this project! For the current version, please refer to 
      <a tal:define="parentUrl python:here.aq_parent.getUrl(baseUrl=proBaseUrl)" 
        tal:attributes="href parentUrl" tal:content="parentUrl"/>
    </h2>
    <tal:x tal:define="started here/getStartedAt" tal:condition="here/isArchivedProject">
      <p>
        (<span tal:condition="started" tal:content="string:$started-"/><span tal:condition="not:started">Completed:</span>
        <span tal:content="here/getCompletedAt"/>)
      </p>
    </tal:x>

    <h1 tal:content="here/getProjectTitle">History of Scientific Objectivity, 18th-19th Cs</h1>
    <p class="maintext_authors">
      <tal:block tal:repeat="person here/getResponsibleScientistsList">
          <a tal:define="username person/username|nothing" tal:omit-tag="python:not username or not here.getStaffFolder().isActiveMember(key=person.get('key',None))"
            tal:attributes="href string:$root/${secmap/staff}/members/$username" tal:content="person/name"> Name of
            responsible person</a><tal:block tal:condition="not:repeat/person/end">, </tal:block>
      </tal:block>
    </p>

    <p class="maintext_more" tal:define="others here/getInvolvedScholars" tal:condition="others">
      Other involved scholars: <span tal:content="structure others">Scholars </span>
    </p>
    <p class="maintext_more" tal:define="partners here/getCooperationPartners" tal:condition="partners">
      Cooperation Partners: <span tal:content="structure partners">Partners</span>
    </p>

    <h2>Selected publications</h2>
    <tal:block tal:define="books here/getAdditionalPublicationList;">
      <ul class="publicationlist">
        <li tal:repeat="found3 books">
          <a tal:attributes="href python:'http://pubman.mpiwg-berlin.mpg.de/pubman/faces/viewItemFullPage.jsp?itemId='+found3.escidocid" 
             tal:content="structure python:here.mpiwgPubman.getEntryFromPubman(found3.escidocid)"/>
        </li>
      </ul>
    </tal:block>

  </div>
  </body>
</html>