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

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

fixed

  • Property svn:keywords set to Id
File size: 1.8 KB
RevLine 
[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 1502 2007-02-26 18:29:39Z henrik $
[544]11"""
12return the current student_index_html
13"""
[1380]14from Products.AdvancedQuery import Eq, Between, Le,In
15evalAdvancedQuery = context.portal_catalog.evalAdvancedQuery
[544]16
17request = context.REQUEST
[1380]18session = request.SESSION
19response = request.RESPONSE
20redirect = response.redirect
[544]21pm = context.portal_membership
[999]22member = pm.getAuthenticatedMember()
[544]23
[1238]24#from Products.zdb import set_trace;set_trace()
[903]25if context.isStaff():
[723]26    if context.portal_type == 'StudentStudyCourse':
27        return context.study_course_view()
28    elif context.portal_type == 'StudentStudyLevel':
29        return context.study_level_view()
[839]30    elif context.portal_type == 'StudentClearance':
[894]31        return context.clearance_view()
[1283]32    elif context.portal_type == 'PaymentsFolder':
33        return context.payments_view()
[839]34    elif context.portal_type == 'Student':
[999]35        return redirect("%s/student_view" % context.absolute_url())
[1368]36    elif context.portal_type == 'Payment':
[1502]37        return context.payment_receipt()
[839]38    return redirect("%s/waeup_document_view" % context.absolute_url())
[603]39if context.isStudent():
[1243]40    if context.portal_type == 'PaymentsFolder':
41        return context.payments_view()
[1368]42    elif context.portal_type == 'Payment':
43        return context.payment_receipt()
[1380]44    elif context.portal_type == 'StudentStudyLevel':
[1492]45        return context.study_level_view()
[1502]46    elif context.portal_type == 'StudentStudyCourse':
47        return context.study_course_view()       
[1163]48    students_url = "%s/campus/students" % (context.portal_url())
49    id = str(member)
50    return redirect("%s/%s/student_view" % (students_url, id))
[903]51
[1163]52return redirect("%s/srp_anonymous_view" % context.portal_url())
53
Note: See TracBrowser for help on using the repository browser.