## 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 903 2006-11-20 08:08:10Z henrik $
"""
return the current student_index_html
"""

request = context.REQUEST
redirect = request.RESPONSE.redirect
pm = context.portal_membership

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 == '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())

return redirect("%s/srp_anonymous_view" % context.absolute_url())
    
