## 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 891 2006-11-18 20:59:12Z henrik $ """ return the current student_index_html """ request = context.REQUEST redirect = request.RESPONSE.redirect pm = context.portal_membership if pm.isAnonymousUser(): return redirect("%s/srp_anonymous_view" % context.absolute_url()) if context.isManager() or 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_edit_form() elif context.portal_type == 'Student': return redirect("%s/student_view" % context.absolute_url()) return redirect("%s/waeup_document_view" % context.absolute_url()) if context.isStudent(): info = context.getStudentInfo() student = info['student'] return redirect("%s/student_view" % student.absolute_url())