source: WAeUP_SRP/trunk/skins/waeup_student/student_index.py @ 820

Last change on this file since 820 was 805, checked in by joachim, 18 years ago

propset Id

  • Property svn:keywords set to Id
File size: 1.5 KB
Line 
1## Script (Python) "student_indext"
2##bind container=container
3##bind context=context
4##bind namespace=
5##bind script=script
6##bind subpath=traverse_subpath
7##parameters=batch=None
8##title=
9##
10# $Id: student_index.py 805 2006-11-09 09:38:29Z joachim $
11"""
12return the current student_index_html
13"""
14
15request = context.REQUEST
16redirect = request.RESPONSE.redirect
17pm = context.portal_membership
18
19if pm.isAnonymousUser():
20    return redirect("%s/srp_anonymous_view" % context.absolute_url())
21if context.isManager():
22    if context.portal_type == 'StudentStudyCourse':
23        return context.study_course_view()
24    elif context.portal_type == 'StudentStudyLevel':
25        return context.study_level_view()
26    return redirect("%s/student_view" % context.absolute_url())
27if context.isStudent():
28    info = context.getStudentInfo()
29    student = info['student']
30    doc = info['app_doc']
31    state = context.getStudentInfo()['review_state']
32    if state == 'admission_applied':
33        return redirect("%s/application_view" % student.absolute_url())
34    elif state in ('application_pin_entered',):
35        return redirect("%s/application_edit" % info['app'].absolute_url())
36    elif state in ('admitted',):
37        return redirect("%s/admission_accept_form" % student.absolute_url())
38    elif state == 'clearance_pin_entered':
39        return redirect("%s/student_view" % info['clear'].absolute_url())
40    elif context.portal_type == 'StudentStudyLevel':
41        return context.study_level_student_view()
42    return redirect("%s/student_view" % student.absolute_url())
Note: See TracBrowser for help on using the repository browser.