## Script (Python) "student_indext"
##bind container=container
##bind context=context
##bind namespace=
##bind script=script
##bind subpath=traverse_subpath
##parameters=batch=None
##title=
##
# $Id: student_edit.py 486 2006-09-06 10:09:39Z joachim $
"""
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():
    if context.portal_type == 'StudentStudyCourse':
        return context.study_course_view()
    elif context.portal_type == 'StudentStudyLevel':
        return context.study_level_view()
    return redirect("%s/student_view" % context.absolute_url())
if context.isStudent():
    info = context.getStudentInfo()
    student = info['student']
    doc = info['app_doc']
    state = context.getStudentInfo()['review_state']
    if state == 'admission_applied':
        return redirect("%s/application_view" % student.absolute_url())
    elif state == 'application_pin_entered':
        return redirect("%s/passport_entry_view" % student.absolute_url())


