1 | ## Script (Python) "student_index" |
---|
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 1502 2007-02-26 18:29:39Z henrik $ |
---|
11 | """ |
---|
12 | return the current student_index_html |
---|
13 | """ |
---|
14 | from Products.AdvancedQuery import Eq, Between, Le,In |
---|
15 | evalAdvancedQuery = context.portal_catalog.evalAdvancedQuery |
---|
16 | |
---|
17 | request = context.REQUEST |
---|
18 | session = request.SESSION |
---|
19 | response = request.RESPONSE |
---|
20 | redirect = response.redirect |
---|
21 | pm = context.portal_membership |
---|
22 | member = pm.getAuthenticatedMember() |
---|
23 | |
---|
24 | #from Products.zdb import set_trace;set_trace() |
---|
25 | if context.isStaff(): |
---|
26 | if context.portal_type == 'StudentStudyCourse': |
---|
27 | return context.study_course_view() |
---|
28 | elif context.portal_type == 'StudentStudyLevel': |
---|
29 | return context.study_level_view() |
---|
30 | elif context.portal_type == 'StudentClearance': |
---|
31 | return context.clearance_view() |
---|
32 | elif context.portal_type == 'PaymentsFolder': |
---|
33 | return context.payments_view() |
---|
34 | elif context.portal_type == 'Student': |
---|
35 | return redirect("%s/student_view" % context.absolute_url()) |
---|
36 | elif context.portal_type == 'Payment': |
---|
37 | return context.payment_receipt() |
---|
38 | return redirect("%s/waeup_document_view" % context.absolute_url()) |
---|
39 | if context.isStudent(): |
---|
40 | if context.portal_type == 'PaymentsFolder': |
---|
41 | return context.payments_view() |
---|
42 | elif context.portal_type == 'Payment': |
---|
43 | return context.payment_receipt() |
---|
44 | elif context.portal_type == 'StudentStudyLevel': |
---|
45 | return context.study_level_view() |
---|
46 | elif context.portal_type == 'StudentStudyCourse': |
---|
47 | return context.study_course_view() |
---|
48 | students_url = "%s/campus/students" % (context.portal_url()) |
---|
49 | id = str(member) |
---|
50 | return redirect("%s/%s/student_view" % (students_url, id)) |
---|
51 | |
---|
52 | return redirect("%s/srp_anonymous_view" % context.portal_url()) |
---|
53 | |
---|