source: WAeUP_SRP/trunk/skins/waeup_student/getStudentInfo.py @ 537

Last change on this file since 537 was 535, checked in by joachim, 18 years ago

student apply admission should work now
the default_view for campus is now home_index.py
for students and student student_index.py
these script redirect to the appropriate PT

File size: 1.1 KB
Line 
1## Script (Python) "cpsdocument_edit"
2##bind container=container
3##bind context=context
4##bind namespace=
5##bind script=script
6##bind subpath=traverse_subpath
7##parameters=student=None
8##title=
9##
10# $Id: student_edit.py 486 2006-09-06 10:09:39Z joachim $
11"""
12return Info about the current Student
13"""
14request = context.REQUEST
15
16wf = context.portal_workflow
17mtool = context.portal_membership
18member = mtool.getAuthenticatedMember()
19path_info = request.get('PATH_INFO').split('/')
20
21info = {}
22member_id = str(member)
23##if member_id not in path_info:
24##    return None
25if student is None:
26    students = getattr(context,'students',None)
27    if students is None:
28        students = getattr(context.campus,'students',None)
29    student = getattr(students,member_id,None)
30    if student is None:
31        return None
32info['review_state'] = wf.getInfoFor(student,'review_state','keiner')
33#info['wf_state'] = 'keiner'
34info['student'] = student
35info['app'] = student.application
36info['app_doc'] = student.application.getContent()
37info['per'] = student.personal
38info['per_doc'] = student.personal.getContent()
39return info
Note: See TracBrowser for help on using the repository browser.