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

Last change on this file since 655 was 655, checked in by Henrik Bettermann, 18 years ago

start working on student_view

File size: 982 bytes
RevLine 
[544]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_edit.py 486 2006-09-06 10:09:39Z 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())
21
[603]22if context.isManager():
[544]23    return redirect("%s/academics_contents" % context.absolute_url())
[603]24if context.isStudent():
[544]25    info = context.getStudentInfo()
26    student = info['student']
[655]27#    doc = info['app_doc']
28#    state = context.getStudentInfo()['review_state']
29#    if state == 'admission_applied':
30#       elif state == 'application_pin_entered':
31#        return redirect("%s/passport_entry_view" % student.absolute_url())
32
33    return redirect("%s/student_view" % student.absolute_url())
34
35
Note: See TracBrowser for help on using the repository browser.