[891] | 1 | ## Script (Python) "student_index" |
---|
[544] | 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 1294 2007-01-15 09:02:01Z 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 |
---|
[999] | 18 | member = pm.getAuthenticatedMember() |
---|
[544] | 19 | |
---|
[1238] | 20 | #from Products.zdb import set_trace;set_trace() |
---|
[903] | 21 | if context.isStaff(): |
---|
[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': |
---|
[894] | 27 | return context.clearance_view() |
---|
[1283] | 28 | elif context.portal_type == 'PaymentsFolder': |
---|
| 29 | return context.payments_view() |
---|
[839] | 30 | elif context.portal_type == 'Student': |
---|
[999] | 31 | return redirect("%s/student_view" % context.absolute_url()) |
---|
[839] | 32 | return redirect("%s/waeup_document_view" % context.absolute_url()) |
---|
[603] | 33 | if context.isStudent(): |
---|
[1243] | 34 | if context.portal_type == 'PaymentsFolder': |
---|
| 35 | return context.payments_view() |
---|
[1294] | 36 | if context.portal_type == 'Payment': |
---|
| 37 | return context.waeup_document_view() |
---|
[1163] | 38 | students_url = "%s/campus/students" % (context.portal_url()) |
---|
| 39 | id = str(member) |
---|
| 40 | return redirect("%s/%s/student_view" % (students_url, id)) |
---|
[903] | 41 | |
---|
[1163] | 42 | return redirect("%s/srp_anonymous_view" % context.portal_url()) |
---|
| 43 | |
---|