source: WAeUP_SRP/branches/joachim-event-branch/skins/waeup_student/student_index.py

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

fixed

  • Property svn:keywords set to Id
File size: 1.8 KB
Line 
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"""
12return the current student_index_html
13"""
14from Products.AdvancedQuery import Eq, Between, Le,In
15evalAdvancedQuery = context.portal_catalog.evalAdvancedQuery
16
17request = context.REQUEST
18session = request.SESSION
19response = request.RESPONSE
20redirect = response.redirect
21pm = context.portal_membership
22member = pm.getAuthenticatedMember()
23
24#from Products.zdb import set_trace;set_trace()
25if 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())
39if 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
52return redirect("%s/srp_anonymous_view" % context.portal_url())
53
Note: See TracBrowser for help on using the repository browser.