source: WAeUP_SRP/trunk/skins/waeup_default/campus_index.py @ 774

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

batch of fixes to open the frontend for the first time

File size: 755 bytes
Line 
1## Script (Python) "campus_index"
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: student_edit.py 486 2006-09-06 10:09:39Z joachim $
11"""
12return the correct campus_index_html
13"""
14
15request = context.REQUEST
16redirect = request.RESPONSE.redirect
17pm = context.portal_membership
18
19if pm.isAnonymousUser():
20    return redirect("%s/campus_anonymous_view" % request.get('URL1'))
21
22campus = context.portal_catalog(meta_type = "University")[-1].getObject()
23
24if context.isManager():
25    return redirect("%s/campus_manager_view" % campus.absolute_url())
26
27if context.isStudent():
28    return redirect("%s/students_index" % campus.students.absolute_url())
29
Note: See TracBrowser for help on using the repository browser.