## Script (Python) "student_index" ##bind container=container ##bind context=context ##bind namespace= ##bind script=script ##bind subpath=traverse_subpath ##parameters=batch=None ##title= ## # $Id: student_index.py 1502 2007-02-26 18:29:39Z henrik $ """ return the current student_index_html """ from Products.AdvancedQuery import Eq, Between, Le,In evalAdvancedQuery = context.portal_catalog.evalAdvancedQuery request = context.REQUEST session = request.SESSION response = request.RESPONSE redirect = response.redirect pm = context.portal_membership member = pm.getAuthenticatedMember() #from Products.zdb import set_trace;set_trace() if context.isStaff(): if context.portal_type == 'StudentStudyCourse': return context.study_course_view() elif context.portal_type == 'StudentStudyLevel': return context.study_level_view() elif context.portal_type == 'StudentClearance': return context.clearance_view() elif context.portal_type == 'PaymentsFolder': return context.payments_view() elif context.portal_type == 'Student': return redirect("%s/student_view" % context.absolute_url()) elif context.portal_type == 'Payment': return context.payment_receipt() return redirect("%s/waeup_document_view" % context.absolute_url()) if context.isStudent(): if context.portal_type == 'PaymentsFolder': return context.payments_view() elif context.portal_type == 'Payment': return context.payment_receipt() elif context.portal_type == 'StudentStudyLevel': return context.study_level_view() elif context.portal_type == 'StudentStudyCourse': return context.study_course_view() students_url = "%s/campus/students" % (context.portal_url()) id = str(member) return redirect("%s/%s/student_view" % (students_url, id)) return redirect("%s/srp_anonymous_view" % context.portal_url())