view zpt/staff/talks_full_html.zpt @ 213:8d6d14498778

trying # 130: sortProjects funktioniert nicht https://it-dev.mpiwg-berlin.mpg.de/tracs/webpage/ticket/130
author casties
date Wed, 07 Aug 2013 11:27:29 +0200
parents f4ac675b2031
children 2598210ada7a
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:x define="global member here/getContent" />
</tal:block>
</head>
<body>
  <div class="center" metal:fill-slot="center">
    <h1>
      <span tal:replace="member/title" /> <span tal:replace="python:here.decode(member.first_name)" /> <span
        tal:replace="python:here.decode(member.last_name)" />
    </h1>

    <p>
      <a tal:attributes="href python:here.getUrl(baseUrl=root+'/'+secmap['staff']+'/members')">main entry</a>
    </p>

    <h2>Talks and presentations</h2>
    
    <table class="items shorter" tal:define="talks here/getTalks">
      <tr tal:repeat="talk talks">
        <td>
          <span tal:content="talk/date" />
        </td>
        <td>
          <a tal:attributes="href talk/link" tal:omit-tag="not:talk/link">
            <span tal:content="talk/place" /> &#150; <i tal:content="talk/title" />
          </a>
        </td>
      </tr>
    </table>
  </div>
</body>
</html>