source: WAeUP_SRP/trunk/skins/waeup_student/students_index.py @ 805

Last change on this file since 805 was 805, checked in by joachim, 18 years ago

propset Id

  • Property svn:keywords set to Id
File size: 766 bytes
Line 
1## Script (Python) "students_indext"
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##
10# $Id: students_index.py 805 2006-11-09 09:38:29Z joachim $
11"""
12return the current students_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.portal_url())
21
22campus = context.portal_catalog(meta_type = "University")[-1].getObject()
23
24if context.isManager():
25    return redirect("%s/searchStudents" % campus.students.absolute_url())
26if context.isStudent():
27    info = context.getStudentInfo()
28    student = info['student']
29    return redirect("%s/student_view" % student.absolute_url())
30
Note: See TracBrowser for help on using the repository browser.