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

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

external clearance edit form added (use-macro)

  • Property svn:keywords set to Id
File size: 1.1 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 894 2006-11-19 07:50:13Z henrik $
[544]11"""
12return the current student_index_html
13"""
14
15request = context.REQUEST
16redirect = request.RESPONSE.redirect
17pm = context.portal_membership
18
19if pm.isAnonymousUser():
20    return redirect("%s/srp_anonymous_view" % context.absolute_url())
[888]21if context.isManager() or context.isStaff:
[723]22    if context.portal_type == 'StudentStudyCourse':
23        return context.study_course_view()
24    elif context.portal_type == 'StudentStudyLevel':
25        return context.study_level_view()
[839]26    elif context.portal_type == 'StudentClearance':
[894]27        return context.clearance_view()
[839]28    elif context.portal_type == 'Student':
29        return redirect("%s/student_view" % context.absolute_url())
30    return redirect("%s/waeup_document_view" % context.absolute_url())
[603]31if context.isStudent():
[544]32    info = context.getStudentInfo()
33    student = info['student']
[742]34    return redirect("%s/student_view" % student.absolute_url())
Note: See TracBrowser for help on using the repository browser.