source: WAeUP_SRP/trunk/skins/waeup_default/portlet_session_info.pt @ 912

Last change on this file since 912 was 785, checked in by joachim, 18 years ago

check admission added,
several modifications to getStudentInfo,
request_clearance not yet implemented.

  • Property svn:keywords set to Id
File size: 665 bytes
Line 
1<tal:block define="mtool here/portal_membership;
2           member mtool/getAuthenticatedMember;
3           isAnon mtool/isAnonymousUser;
4           info context/getStudentInfo;"
5           >
6  <tal:block condition="context/isStudent">
7       <strong>
8         <span tal:condition="info/is_student|nothing" tal:content="python:info['student_doc'].Title()" />
9       </strong>
10  </tal:block>
11  <tal:block condition="not:context/isStudent">
12       <strong>
13         <span tal:content="python:member.getProperty('fullname',None)" />
14       </strong>
15  </tal:block> 
16  <tal:block condition="isAnon">
17    <strong>Anonymous User</strong>
18  </tal:block>
19</tal:block>
Note: See TracBrowser for help on using the repository browser.