[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 | ## |
---|
[805] | 10 | # $Id: student_index.py 839 2006-11-11 12:49:31Z henrik $ |
---|
[544] | 11 | """ |
---|
| 12 | return the current student_index_html |
---|
| 13 | """ |
---|
| 14 | |
---|
| 15 | request = context.REQUEST |
---|
| 16 | redirect = request.RESPONSE.redirect |
---|
| 17 | pm = context.portal_membership |
---|
| 18 | |
---|
| 19 | if pm.isAnonymousUser(): |
---|
| 20 | return redirect("%s/srp_anonymous_view" % context.absolute_url()) |
---|
[603] | 21 | if context.isManager(): |
---|
[723] | 22 | if context.portal_type == 'StudentStudyCourse': |
---|
| 23 | return context.study_course_view() |
---|
| 24 | elif context.portal_type == 'StudentStudyLevel': |
---|
| 25 | return context.study_level_view() |
---|
[839] | 26 | elif context.portal_type == 'StudentClearance': |
---|
| 27 | return context.clearance_view() |
---|
| 28 | elif context.portal_type == 'Student': |
---|
| 29 | return redirect("%s/student_view" % context.absolute_url()) |
---|
| 30 | return redirect("%s/waeup_document_view" % context.absolute_url()) |
---|
[603] | 31 | if context.isStudent(): |
---|
[544] | 32 | info = context.getStudentInfo() |
---|
| 33 | student = info['student'] |
---|
[839] | 34 | #doc = info['app_doc'] |
---|
| 35 | #state = context.getStudentInfo()['review_state'] |
---|
| 36 | #if state == 'admission_applied': |
---|
| 37 | # return redirect("%s/application_view" % student.absolute_url()) |
---|
| 38 | #elif state in ('application_pin_entered',): |
---|
| 39 | # return redirect("%s/application_edit" % info['app'].absolute_url()) |
---|
| 40 | #elif state in ('admitted',): |
---|
| 41 | # return redirect("%s/admission_form" % student.absolute_url()) |
---|
| 42 | #elif state == 'clearance_pin_entered': |
---|
| 43 | # return redirect("%s/student_view" % info['clear'].absolute_url()) |
---|
| 44 | #elif context.portal_type == 'StudentStudyLevel': |
---|
| 45 | # return context.study_level_student_view() |
---|
[742] | 46 | return redirect("%s/student_view" % student.absolute_url()) |
---|