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

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

students link fixed

  • Property svn:keywords set to Id
File size: 824 bytes
RevLine 
[542]1## Script (Python) "students_indext"
[535]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: students_index.py 827 2006-11-10 14:39:01Z henrik $
[535]11"""
[542]12return the current students_index_html
[535]13"""
14
15request = context.REQUEST
16redirect = request.RESPONSE.redirect
17pm = context.portal_membership
[542]18
[535]19if pm.isAnonymousUser():
[681]20    return redirect("%s/srp_anonymous_view" % context.portal_url())
[542]21
[827]22students_url = "%s/campus/students" % (context.portal_url.getPortalPath())
[816]23#campus = context.portal_catalog(meta_type = "University")[-1].getObject()
[542]24
[603]25if context.isManager():
[827]26    return redirect("%s/searchStudents" % students_url)
[603]27if context.isStudent():
[542]28    info = context.getStudentInfo()
29    student = info['student']
[655]30    return redirect("%s/student_view" % student.absolute_url())
31
Note: See TracBrowser for help on using the repository browser.